06 2017 档案

摘要:/// /// DateTime时间格式转换为13位带毫秒的Unix时间戳 /// /// DateTime时间格式 /// Unix时间戳格式 public static long ConvertDateTimeLong(System.DateTime time) { ... 阅读全文
posted @ 2017-06-17 15:45 TMD睡觉 阅读(15312) 评论(0) 推荐(0)
摘要:const int FEATURE_DISABLE_NAVIGATION_SOUNDS = 21; const int SET_FEATURE_ON_PROCESS = 0x00000002; [DllImport("urlmon.dll")] [PreserveSig] [return: MarshalAs(Unmanage... 阅读全文
posted @ 2017-06-08 11:01 TMD睡觉 阅读(749) 评论(0) 推荐(0)
摘要:把以下内容保存为 1.reg ,然后导入注册表,即可解决C# webbrowser 弹出json下载问题,也可通过程序修改。 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/json] "CLSID"="{25336920-03F9-11cf-8F... 阅读全文
posted @ 2017-06-08 10:19 TMD睡觉 阅读(2744) 评论(0) 推荐(0)
摘要://1.将窗体的属性KeyPrieview设置为true //keypreview属性为true的时候,就可以响应键盘事件v //2.在窗体KeyDown事件中加如下代码 private void Form1_KeyDown(object sender, KeyEventArgs e) { if( (e.KeyCode == K... 阅读全文
posted @ 2017-06-06 16:51 TMD睡觉 阅读(1495) 评论(0) 推荐(1)