仅在 MDI 应用程序 c# 的活动子级中启用 KeyDown 事件

发布于 2024-09-18 12:13:21 字数 224 浏览 9 评论 0原文

我有一个 MDI 应用程序,其中一个 mainForm 和一个 childForm,且 KeyPreview 设置为 TRUE。现在,在我的 childForm 中,当我按下某个键时,程序会在两种窗体中启动 KeyPressed 事件。当子窗体处于活动状态时,我可以禁用主窗体中的事件吗?

我想要的是:当 childForm 处于活动状态时,只有表单中的事件应该被触发...

最好的问候,Stefano

I've a MDI application with a mainForm and a childForm with KeyPreview set to TRUE. Now in my childForm when I press a key, the program starts the event KeyPressed in both forms. Can I disable the event in the mainForm when the childForm is active?

What i want is thet: when the childForm is Active, only the event in the form should be triggered...

Best regards, Stefano

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

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

发布评论

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

评论(2

盗琴音 2024-09-25 12:13:21

您可以添加

if(ActiveMdiChild != null)
  return;

到父窗口的事件处理程序的开头...

you could just add

if(ActiveMdiChild != null)
  return;

to the beginning of the event handler of the parent window...

无力看清 2024-09-25 12:13:21

答案应该是这样的

    private void mdifrm_MdiChildActivate(object sender, EventArgs e)
    {
        if (ActiveMdiChild != null)
            // if there's a form keyPreview set to False
            KeyPreview = false; 
        else
            // else set to True
            KeyPreview = true;

    }

answer should be like this

    private void mdifrm_MdiChildActivate(object sender, EventArgs e)
    {
        if (ActiveMdiChild != null)
            // if there's a form keyPreview set to False
            KeyPreview = false; 
        else
            // else set to True
            KeyPreview = true;

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