如何防止弹出表单夺走父级的焦点

发布于 2024-09-08 03:48:25 字数 180 浏览 2 评论 0原文

我有一个小的 windows.form,当鼠标悬停在 windows.Form 上的某个区域上时,我用它来显示信息,但是当它设置为可见时,它会从父窗口获取焦点。有没有办法防止这种情况 - 它会导致主窗体在焦点和焦点之间切换时闪烁。

时间:2019-03-09 标签:c#、.net 2.0、system.windows.forms

I have a small windows.form that I use to present information when the mouse is over a regions on a windows.Form, however it takes the focus from the parent window when it is set to visible. Is there w way of preventing this - it causes the main form to flicker as it toggles between in focus and out.

c#, .net 2.0, system.windows.forms

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惜醉颜 2024-09-15 03:48:26

将其粘贴到您的弹出表单类中,它会阻止它在显示时被激活:

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

Paste this into your popup form class, it prevents it from being activated when shown:

    protected override bool ShowWithoutActivation {
        get { return true; }
    }
那请放手 2024-09-15 03:48:26
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

ShowWindow(popupForm.Handle, 8);

有关其他命令,请参阅 ShowWindow 函数

[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

ShowWindow(popupForm.Handle, 8);

See ShowWindow Function for additional commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文