单击NotifyIcon(任务栏图标)切换C#窗口

时间:2011-08-03 12:14:28

标签: c# .net forms notifyicon

我的C#应用​​程序包含一个任务栏图标(NotifyIcon)和一个最初隐藏的开销窗口。我希望用户能够通过单击NotifyIcon(左键单击)来切换窗口可见性。失去焦点时窗口也被隐藏了。

这是我到目前为止的一个子类System.Windows.Forms.Form

初​​始化:

this.ControlBox = false;
this.ShowIcon = false;
this.ShowInTaskbar = false;

// Instance variables: bool allowVisible;
//                     System.Windows.Forms.NotifyIcon notifyIcon;

this.allowVisible = false;
this.notifyIcon = new NotifyIcon();
this.notifyIcon.MouseUp += new MouseEventHandler(NotifyIconClicked);
this.Deactivate += new EventHandler(HideOnEvent);

实例方法:

private void NotifyIconClicked(object sender, MouseEventArgs e)
{
    if (e.Button == System.Windows.Forms.MouseButtons.Left)
    {
        if (this.Visible)
            this.Hide();
        else
            this.Show();
    }
}

new public void Show()
{
    this.allowVisible = true;
    this.Visible = true;
    this.Activate();
}

new public void Hide()
{
    this.allowVisible = false;
    this.Visible = false;
}

private void HideOnEvent(object sender, EventArgs e)
{
    this.Hide();
}

protected override void SetVisibleCore(bool visible)
{
    base.SetVisibleCore(this.allowVisible ? visible : this.allowVisible);
}

单击该图标会显示窗口。但是,只要按下鼠标,再次单击它会隐藏它,然后将其重置为可见。

我的猜测是,鼠标按下事件会从窗口中窃取焦点,因此它会消失。然后触发鼠标按下事件,显示隐藏的窗口。

我的下一个想法是在鼠标按下事件时读取窗口可见性,因此我测试了三个事件并记录了UNIX时间:

notifyIcon.MouseDown
notifyIcon.MouseUp
this.LostFocus

结果很奇怪:假设窗口是可见的。单击图标时会发生这种情况:立即调用焦点丢失。在鼠标向上事件发生之前,只要我释放鼠标,鼠标就会被称为

1312372231 focus lost
1312372235 mouse down
1312372235 mouse up

为什么鼠标停止事件会延迟? 如何切换窗口?

1 个答案:

答案 0 :(得分:2)

我认为这可能对你有用。

我找到了一个专家交换帖子,其中包含一个类,该类提供检查光标当前是否在托盘上方的方法。

NotifyIcon - Detect MouseOut

使用这个类我修改了你的HideOnEvent方法:

    private void HideOnEvent(object sender, EventArgs e)
    {
        if (!WinAPI.GetTrayRectangle().Contains(Cursor.Position))
        {
            this.Hide();
        }
    }

这似乎做你需要的。

我已将此课程包括在内:

using System.Runtime.InteropServices;
using System.Drawing;

public class WinAPI
{
    public struct RECT
    {
        public int left;
        public int top;
        public int right;
        public int bottom;

        public override string ToString()
        {
            return "(" + left + ", " + top + ") --> (" + right + ", " + bottom + ")";
        }
    }

    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    public static extern IntPtr FindWindow(string strClassName, string strWindowName);

    [DllImport("user32.dll", SetLastError = true)]
    public static extern IntPtr FindWindowEx(IntPtr parentHandle, IntPtr childAfter, string className, IntPtr windowTitle);

    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);


    public static IntPtr GetTrayHandle()
    {
        IntPtr taskBarHandle = WinAPI.FindWindow("Shell_TrayWnd", null);
        if (!taskBarHandle.Equals(IntPtr.Zero))
        {
            return WinAPI.FindWindowEx(taskBarHandle, IntPtr.Zero, "TrayNotifyWnd", IntPtr.Zero);
        }
        return IntPtr.Zero;
    }

    public static Rectangle GetTrayRectangle()
    {
        WinAPI.RECT rect;
        WinAPI.GetWindowRect(WinAPI.GetTrayHandle(), out rect);
        return new Rectangle(new Point(rect.left, rect.top), new Size((rect.right - rect.left) + 1, (rect.bottom - rect.top) + 1));
    }
}

这不是一个完美的解决方案,但我希望这会有所帮助。