正在加载 DomainContext 时禁用按钮
我在表单上有一个按钮,只要我的 DomainDataSource 的 DataContext.IsLoading 为 true,我就希望禁用该按钮;我想将按钮的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用 ValueConverter,类似于
BooleanInverter
,它在转换时反转值。请参阅 MSDN那么你的绑定将是
You could use a ValueConverter for this, something like an
BooleanInverter
which on conversion, inverts the value. See MSDNYour binding would then be