阚金翔
达则兼济天下,穷则独善其身
摘要: static public void SetIERegistry() { try { //获取系统IE版本号 string strIEVersion = SysIeVersion(); if (string.IsNullOrEmpty(strIEVersion) || strIEVersion.Sp 阅读全文
posted @ 2017-11-30 16:14 阚金翔 阅读(3352) 评论(0) 推荐(0)
摘要: Process proc = null; try { proc = new Process(); proc.StartInfo.FileName = @"C:\Users\Administrator\Desktop\script"; proc.StartInfo.Arguments = string 阅读全文
posted @ 2017-11-30 16:02 阚金翔 阅读(1133) 评论(0) 推荐(0)
摘要: //实现窗体抖动的效果 Point first = this.Location; for (int i = 0; i < 30; i++) { Random ran = new Random(); Point p = new Point(this.Location.X + ran.Next(10) 阅读全文
posted @ 2017-11-30 13:38 阚金翔 阅读(193) 评论(0) 推荐(0)