WPF 消息框和数据模板

发布于 2024-08-14 12:07:29 字数 706 浏览 6 评论 0原文

我有一个简化形式的对象,如下所示:

public class MyObject
{
     public bool Activate { 
     get { MessageBox.Show("My Status"); } 
     set { Do Some Stuff }
}

我有一个 DataTemplate,它将“Activate”属性映射到复选框,如下所示:

<DataTemplate x:Key="ComponentResourceKey TypeInTargetAssembly={x:Type local:PropertyGrid}, ResourceId={x:Type clr:Boolean}}">
      <CheckBox IsEnabled="{Binding Path=IsWriteable}" IsChecked="{Binding Path=Value}"/>
</DataTemplate>

该模板来自 我正在使用的 WPF 属性网格 控件。问题是消息框永远不会显示,主窗口正在等待消息框的响应。当需要呼叫但不存在对话框时,我听到错误通知声音。

WPF 中有什么东西可以改变 z 顺序吗?我是否在我不期望的环境中运行?

I have an object that in a simplified form is as follows:

public class MyObject
{
     public bool Activate { 
     get { MessageBox.Show("My Status"); } 
     set { Do Some Stuff }
}

I have a DataTemplate that maps the "Activate" property to a check box like so:

<DataTemplate x:Key="ComponentResourceKey TypeInTargetAssembly={x:Type local:PropertyGrid}, ResourceId={x:Type clr:Boolean}}">
      <CheckBox IsEnabled="{Binding Path=IsWriteable}" IsChecked="{Binding Path=Value}"/>
</DataTemplate>

The template is from the WPF Property Grid control that I'm using. The issue is that the message box is never shown and the main window is waiting for a response from the box. I hear the error notification sound when the call is expected but no dialog is present.

Is there something in WPF that changes the z-order? Am I running in a context I'm not expecting?

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

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

发布评论

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

评论(1

×纯※雪 2024-08-21 12:07:29

你永远不应该在 getter 中显示消息框!
请改用命令。

如果你通过MessageBox.Show调用当前窗口作为参数,它应该以模态方式显示。

You should never show a messagebox inside a getter!
Use commands instead.

If you pass the MessageBox.Show call the current window as a parameter, it should be displayed modal.

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