1

我有以下场景:WinForms 应用程序只允许运行此应用程序的一个实例(此处使用互斥锁进行检查)。以一些参数开始的应用程序正在运行但被隐藏。当有人再次点击应用程序时,Mutex 将检测到该应用程序已经在运行,并通过调用本机方法“取消隐藏”主窗体(参见下面的方法BringWindowToFront)。

这是查找和显示表单窗口的代码:

public static class NativeMethods
{
    public enum ShowWindowOptions
    {
        FORCEMINIMIZE = 11,
        HIDE = 0,
        MAXIMIZE = 3,
        MINIMIZE = 6,
        RESTORE = 9,
        SHOW = 5,
        SHOWDEFAULT = 10,
        SHOWMAXIMIZED = 3,
        SHOWMINIMIZED = 2,
        SHOWMINNOACTIVE = 7,
        SHOWNA = 8,
        SHOWNOACTIVATE = 4,
        SHOWNORMAL = 1
    }

    [DllImport("user32.dll")]
    public static extern int ShowWindow(int hwnd, int cmdShow);

    [DllImport("USER32.DLL", CharSet = CharSet.Unicode)]
    public static extern IntPtr FindWindow(String lpClassName, String lpWindowName);

    [DllImport("USER32.DLL")]
    public static extern bool SetForegroundWindow(IntPtr hWnd);

    public static void BringWindowToFront(string windowTitle)
    {
        // Get a handle to the application.
        IntPtr handle = FindWindow(null, windowTitle);

        // Verify that app is a running process.
        if (handle == IntPtr.Zero)
        {
            return;
        }

        // With this line you have changed window status from example, minimized to normal
        ShowWindow((int)handle, (int)ShowWindowOptions.SHOWDEFAULT);

        // Make app the foreground application
        SetForegroundWindow(handle);
    }
}

一切都很好,但我还需要一个功能。当主表单第一次取消隐藏时,我想显示另一个附加表单。通常我是通过表单_Shown事件来完成的。但是当我使用 PInvoke 方法来显示窗口时,这个事件不会被触发。

所以基本上我想在显示主窗体时显示附加窗体(使用 ShowWindow PInvoke 方法)

这可能吗?还有其他想法如何实现吗?

4

2 回答 2

2

Form.Shown事件仅在第一次显示表单时触发(即加载后),以后执行任何其他操作(例如,隐藏然后重新显示)都不会触发该事件。有关详细信息,请参阅:http: //msdn.microsoft.com/en-us/library/system.windows.forms.form.shown.aspx

还有一些其他事件可能对您的情况有用:

如果这些都不起作用,并且您必须使用 P/Invoke,那么我将使用SetActiveWindow它将发送一条WM_ACTIVATE消息,该消息应该强制执行Form.Activated

请注意,如果这不起作用(因为SetActiveWindow发送WM_ACTIVATE低位为 1 的 a ,表明窗口没有被鼠标激活,那么您可以通过使用自己的 WM_ACTIVATE 直接向窗口发送消息来解决此问题信息。

于 2010-07-13T23:35:56.953 回答
2

编写单实例应用程序很棘手。您不必这样做,.NET 框架已经很好地支持它们。项目 + 添加引用,选择 Microsoft.VisualBasic。打开项目的 Program.cs 文件,使其如下所示:

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using Microsoft.VisualBasic.ApplicationServices;

namespace WindowsFormsApplication1 {
    class Program : WindowsFormsApplicationBase {
        [STAThread]
        static void Main(string[] args) {
            var prg = new Program();
            prg.EnableVisualStyles = true;
            prg.IsSingleInstance = true;
            prg.MainForm = new Form1();
            prg.Run(args);
        }

        protected override void OnStartupNextInstance(StartupNextInstanceEventArgs e) {
            var main = this.MainForm as Form1;
            main.WindowState = FormWindowState.Normal;
            main.BringToFront();
            // You could do something interesting with the command line arguments:
            //foreach (var arg in e.CommandLine) {
            //    main.OpenFile(arg);
            //}
        }
    }
}
于 2010-07-14T00:01:01.290 回答