2013年10月12日

摘要: C# 隐藏任务栏开始按钮 关闭shell 分类: .NET C# 2011-07-14 15:26 789人阅读 评论(1) 收藏 举报shell任务c#stringnulluser一、隐藏任务栏 开始按钮 using System.Runtime.InteropServices; [DllImport("user32.dll")] public static extern int ShowWindow(IntPtr hwnd, int nCmdShow); [DllImport("user32.dll")] public static extern I 阅读全文

posted @ 2013-10-12 23:02 南岗V哥 阅读(172) 评论(0) 推荐(0) 编辑

摘要: 1.单件模式,Singleton,应用程序只能允许一个实例在运行.这是最好的解决方法2.查询系统进程里是不是已经运行.private void Form1_Load(object sender, EventArgs e) { string fileName = Path.GetFileNameWithoutExtension(Application.ExecutablePath); Process[] processes = Process.GetProcessesByName(fileName); Process... 阅读全文

posted @ 2013-10-12 22:13 南岗V哥 阅读(259) 评论(0) 推荐(0) 编辑