原创 Windows Phone從SD卡讀取文件的參考文獻

http://msdn.microsoft.com/zh-cn/library/windows/apps/xaml/dn611857.aspx

原创 我的友情鏈接

51CTO博客開發

原创 C#獲取文件的MD5碼

public static string GetFileMD5(string FilePath) { try { FileStream get

原创 C#獲取數據庫中某個字段的最大值

curTime = SalesDB.ImageTable.Max(s => s.AddTime); 上面的代碼獲取到數據庫中AddTime字段的最大值。

原创 VS2013崩潰,無法打開項目的解決方案

最近遇到VS2013,在打開解決方案時,報如下錯誤: “未找到與約束 ContractName Microsoft.Internal.VisualStudio.PlatformUI.ISolutionAttachedCollectionSe

原创 關於C# HTTP上傳文件的參考資料

http://www.blogjava.net/kiant/articles/277929.html http://blog.csdn.net/mngzilin/article/details/5516238 http://blog.sin

原创 C#應用添加桌面快捷方式和開機啓動

#region 快捷方式 private static void CreateDesktopLnk() { string DesktopPath = System.En

原创 如何用 Windows Live Writer發佈新浪博客及設置

方法/步驟安裝 Windows Live Writer並運行,(如何安裝軟件這裏不再敘說)點擊“添加日誌帳戶” 選擇“其它服務”再點擊下一步。日誌網址輸入自己的博客首頁地址,用戶名輸入博客的登錄名,如我的用戶名lyfcool5169@sin

原创 InstallShield Limited Edition for Visual Studio 2013 圖文教程

教程地址:http://www.cnblogs.com/flydoos/p/3430922.html

原创 Windows Phone平臺OnNavigatedTo方法的重載

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) { //你的代碼 base.OnNavigate

原创 C#監視窗口的鼠標滾輪事件和鍵盤事件

this.KeyPreview = true; this.MouseWheel += new MouseEventHandler(Form1_MouseWheel); this.KeyPreview = true是要讓窗體優先響應按鍵事

原创 Windows XP如何解決顯示桌面圖標消失的問題?

1、依次單擊“開始”,“運行”,在運行對話框中輸入regsvr32 /n /i:u shell32.dll,按回車鍵。 2、彈出“shell32.dll中的DllInstall成功”的窗口,表明已將數據寫入註冊表中。 3、重啓或註銷一下電腦

原创 我的友情鏈接

51CTO博客開發

原创 C#獲取文件的MD5碼

public static string GetFileMD5(string FilePath) { try { FileStream get

原创 C# JSON碼的生成與解析

using System.IO; using System.Runtime.Serialization.Json; using System.Text; using System.Windows.Forms; namespace Cns