如何防止当前 window 在单击系统托盘图标时失去焦点

How to prevent the current window from losing focus when clicking a system tray icon

我正在为 Windows 10 编写一个 C# Windows 表单应用程序,类似于系统虚拟键盘。该应用程序位于最顶层,它不会通过覆盖 CreateParams 和 ShowWithoutActivation 来窃取焦点:

private const int WS_EX_NOACTIVATE = 0x08000000;

protected override CreateParams CreateParams
{
    get
    {
        CreateParams params = base.CreateParams;
        params.ExStyle |= WS_EX_NOACTIVATE;
        return (params);
    }
}

protected override bool ShowWithoutActivation
{
    get { return true; }
}

用户可以将应用程序最小化到系统托盘。这不会改变焦点。但是,当应用程序从系统托盘恢复(通过单击应用程序图标)时,当前活动 window 失去焦点。

有没有办法避免这种行为并保持活动 window(在鼠标单击之前)集中?

使用以下方法最小化和恢复应用程序:

this.Hide();  // minimize on close event
..
this.Show();  // restore on notify icon click event

这里有一个类似的问题,但已经过时了:
Prevent system tray icon from stealing focus when clicked

在有人找到合适的解决方案之前,这是一个临时解决方案。它的工作原理是在应用程序的托盘图标鼠标移动事件中持续读取和保存焦点中的 window。 这个保存的 window 将焦点设置在托盘图标鼠标按下事件内:

[DllImport("user32.dll", ExactSpelling = true)]
static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool SetForegroundWindow(IntPtr hWnd);

private void notifyIcon_MouseDown(object sender, MouseEventArgs e)
{
    if (lastActiveWin != IntPtr.Zero)
    {
        SetForegroundWindow(lastActiveWin);
    }
}

IntPtr lastActiveWin = IntPtr.Zero;
private void notifyIcon_MouseMove(object sender, MouseEventArgs e)
{
    lastActiveWin = GetForegroundWindow();
}