- 打卡等级:即来则安
- 打卡总天数:29
- 打卡月天数:1
- 打卡总奖励:7791
- 最近打卡:2025-12-13 17:25:16
管理员
- 积分
- 21301
|
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());
- }
- }
- }
- }
复制代码
|
|