互斥量从最小化带回

时间:2018-07-04 07:25:23

标签: c# mutex

我正在使用互斥锁来一次检查一个实例。它可以工作,但是要完美,我需要修复一个错误。如果程序处于最小化状态,则单击“确定”后,它将无法自行恢复。有任何想法吗?

这在Program.cs中:

if (process.Id != current.Id)
{
    SetForegroundWindow(process.MainWindowHandle);
    MessageBox.Show(new Form1 { TopMost = true }, "Application is already running!");

    Form1 f1 = new Form1();

    f1.WindowState = FormWindowState.Normal; // dont work
    f1.BringToFront();                       // dont work
    f1.Focus();                              // dont work

    break;
}

1 个答案:

答案 0 :(得分:0)

创建扩展方法:

using System.Runtime.InteropServices;

namespace System.Windows.Forms
{
    public static class Extensions
    {
        [DllImport( "user32.dll" )]
        private static extern int ShowWindow( IntPtr hWnd, uint Msg );

        private const uint SW_RESTORE = 0x09;

        public static void Restore( this Form form )
        {
            if (form.WindowState == FormWindowState.Minimized)
            {
                ShowWindow(form.Handle, SW_RESTORE);
            }
        }
    }
}

然后在代码中使用form.Restore()