控制弹出窗口打开和关闭焦点

发布于 2024-09-13 19:07:32 字数 147 浏览 4 评论 0原文

我有一个弹出窗口,其中包含多个元素、一个列表视图、一个文本框和一个按钮。这些运行良好,如果您使用按钮关闭弹出窗口,它也可以工作,但是当我尝试在失去焦点时关闭弹出窗口时,当我单击列表视图中的元素时,它会关闭。有什么办法解决这个问题吗? FocusManager 属性是正确的选择吗?

I have a popup which contains multiple elements, a list view, a text box and a button. These are operating fine, and if you use the button to close the popup it works as well, but when i tried to make the popup close when it lost focus, it closed when i clicked an element in the listview. Is there any way around this? Is the FocusManager property the way to go?

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

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

发布评论

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

评论(3

烟燃烟灭 2024-09-20 19:07:32

在 Popup 元素上设置 FocusManager.IsFocusScope = True ,这样只要他的子元素之一拥有焦点,它就会保持焦点。

Set FocusManager.IsFocusScope = True on your Popup element, so it keep focus as long as one of his children has it.

空气里的味道 2024-09-20 19:07:32

请尝试代码中弹出控件的stayopen属性。如果它不起作用,请发布您的代码。

Please try the stayopen property of the popup control in you code. If it is not working please post your code.

我纯我任性 2024-09-20 19:07:32

您应该像这样在弹出窗口上设置 StaysOpen 属性:

<Popup StaysOpen="True">
...
</Popup>

http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.popup.staysopen.aspx

You should just set the StaysOpen property on your popup like this:

<Popup StaysOpen="True">
...
</Popup>

http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.popup.staysopen.aspx

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