Net Core教程

C#winform只允许打开一个进程

本文主要是介绍C#winform只允许打开一个进程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
```csharp
static void Main()
    {
        bool createdNew;
        using(Mutex mutex=new Mutex(true,Application.ProductName,out createdNew))
        {
            if (createdNew)
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new Form1());
            }
            else
            {
                MessageBox.Show("Only One Instance is allowed");
                System.Environment.Exit(1);

            }
        }

    }

                    
这篇关于C#winform只允许打开一个进程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!