正在加载 DomainContext 时禁用按钮

发布于 2024-10-22 20:30:46 字数 570 浏览 1 评论 0原文

我在表单上有一个按钮,只要我的 DomainDataSource 的 DataContext.IsLoadingtrue,我就希望禁用该按钮;我想将按钮的 IsEnabled 属性绑定到 ! DomainContext.IsLoading 上的条件,不幸的是我不知道如何将其作为条件表达式处理。我可以让它以与我预期的方式相反的方式工作,但不是我想要的方式。

我的问题是,我该如何做到这一点:

<Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=DomainContext.IsLoading}" />

有效地成为一个!条件大致如下(这当然行不通):

<Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=!DomainContext.IsLoading}" />

I have a button on a form which I want to be disabled as long as my DomainDataSource's DataContext.IsLoading is true; I want to bind the IsEnabled property of the button to a ! condition on DomainContext.IsLoading and unfortunately I do not know how to handle it as a conditional expression. I can get it working in the reverse of my intended fashion, but not the way I want it to be.

My question is, how do I make this:

<Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=DomainContext.IsLoading}" />

effectively be a ! condition along the lines of (this of course does not work) this:

<Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=!DomainContext.IsLoading}" />

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

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

发布评论

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

评论(1

箹锭⒈辈孓 2024-10-29 20:30:46

为此,您可以使用 ValueConverter,类似于 BooleanInverter,它在转换时反转值。请参阅 MSDN

那么你的绑定将是

 <Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=DomainContext.IsLoading, Converter={StaticResource BooleanInverter}}" />

You could use a ValueConverter for this, something like an BooleanInverter which on conversion, inverts the value. See MSDN

Your binding would then be

 <Button IsEnabled="{Binding ElementName=someDomainDataSource, Path=DomainContext.IsLoading, Converter={StaticResource BooleanInverter}}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文