1
我想將應用程序限制爲僅在計算機上運行一個實例。到目前爲止,我有這樣的:如何在嘗試啓動新應用程序時使應用程序的第一個實例最大化
Mutex m = new Mutex(true, Name, out IsOwned);
if (!IsOwned)
{
string message = "There is already a copy of the application '" +
Name +
"' running. Please close that application before starting a new one.";
MessageBox.Show(message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Information);
Environment.Exit(0);
}
else
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
它退出,但有沒有辦法在這個關閉之前最大化第一個實例?