防止 WPF 中菜单控件的菜单关闭

发布于 2024-12-02 17:33:36 字数 202 浏览 1 评论 0原文

当我们单击其区域之外时,我试图阻止 Wpf 中菜单控件的菜单关闭。

我的目标是,例如,我们是否在窗口顶部有一个菜单控件。然后我们打开任何菜单,如果单击窗口中的某个位置,菜单就会关闭。这就是我想要防止发生的事情。

我想要的是只有当单击菜单项之一或其标题时,菜单才能关闭...

有人知道如何在 Wpf 中实现这一点吗?

提前致谢!

I am trying to prevent the closing of the Menus of a Menu control in Wpf when we click out of his area.

My objective is if we for example have a Menu control in the top of the window. We then open any of the menus, and if we click somewhere in the window, the Menu closes. That is what I am wanting to prevent from happening.

What I want is only when the click happens on one of the Menu items, or in its header then the Menu can close...

Anyone know how to achieve this in Wpf?

Thanks in advance!

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

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

发布评论

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

评论(2

送君千里 2024-12-09 17:33:36

有一个类似问题,这里是发布的解决方案:

<ContextMenu StaysOpen="True">  
    <MenuItem Header="Expand the clicking Area" StaysOpenOnClick="True">
        <MenuItem x:Name="AreaWhereClickingWillHappen" StaysOpenOnClick="True">
            <MenuItem.Header>
                <Control x:Name="The one with the clicking stuff" />
            </MenuItem.Header>
        </MenuItem>
    </MenuItem>
</ContextMenu>

There is a similar question available, here is the solution posted:

<ContextMenu StaysOpen="True">  
    <MenuItem Header="Expand the clicking Area" StaysOpenOnClick="True">
        <MenuItem x:Name="AreaWhereClickingWillHappen" StaysOpenOnClick="True">
            <MenuItem.Header>
                <Control x:Name="The one with the clicking stuff" />
            </MenuItem.Header>
        </MenuItem>
    </MenuItem>
</ContextMenu>
荒芜了季节 2024-12-09 17:33:36

只需设置 StaysOpen 属性为 true

Just set the StaysOpen property to true

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