- 打卡等级:常驻代表
- 打卡总天数:34
- 打卡月天数:6
- 打卡总奖励:9027
- 最近打卡:2025-12-17 23:15:51
管理员
- 积分
- 22569
|
Winform 程序禁止重复打开, 只能运行一个程序, 禁止多开- using System;
- using System.Windows.Forms;
- using System.Threading;
-
- namespace Test
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- bool result;
- Application.EnableVisualStyles();
- Mutex m = new Mutex(true, Application.ProductName, out result);
- if (result)
- {
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new MainFrom());
- }
- }
- }
- }
复制代码
|
|