c# – 不能始终如一地将形式带到前面

前端之家收集整理的这篇文章主要介绍了c# – 不能始终如一地将形式带到前面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试了几件事,但没有一件能起作用……

我点击NotifyIcon时应该在所有Windows前面的Form.所以这是我尝试过的:

private void notifyIcon1_MouseDown(object sender,MouseEventArgs e)
{
    if (e.Button == MouseButtons.Left)
    {
        this.TopMost = true;
        this.BringToFront();
        this.Focus();
        this.TopMost = false;
    }
}

然后我尝试使用SetForegroundWindow:

[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("user32",CharSet = CharSet.Ansi,SetLastError = true,ExactSpelling = true)]
public static extern bool SetForegroundWindow(IntPtr hwnd);

通过增加

SetForegroundWindow(this.Handle);

在if块的末尾.

最后,我看到如果我在NotifyIcon上单击鼠标右键并且上下文菜单打开时不起作用,我可以左键单击NotifyIcon并将其带到前面.

我试图在开头添加代码

cmsNotifyIcon.Show();
        cmsNotifyIcon.Close();

因此它显示关闭notifyIcon上下文菜单,作为解决方法的可能想法,但它没有帮助.

关于如何做到这一点的任何想法,或解决这个问题?

解决方法

如果你在MouseUp上做了怎么办?
原文链接:https://www.f2er.com/csharp/243957.html

猜你在找的C#相关文章