在 WPF 中使用样式的问题
我可以在 xaml 中使用 STYLE 编写以下代码吗?
cmbEnquiry.IsEnabled = (txtQuotationNo.IsEnabled && txtQuotationNo.IsReadOnly == false);
Can I write following code using STYLE in xaml?
cmbEnquiry.IsEnabled = (txtQuotationNo.IsEnabled && txtQuotationNo.IsReadOnly == false);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是否会按原样工作,因为我不在 IDE 前面并且正在尝试从内存中进行编码,但如果没有别的事情,它将作为 MultiBinding 的示例。
在您的资源中:
在您的代码隐藏中:
编辑:
刚刚验证了代码,它按预期工作。
I'm not sure if this will work as is as I'm not in front of an IDE and am trying to code from memory, but if nothing else, it'll serve as an example for MultiBinding.
In your resources:
In your code-behind:
Edit:
Just verified the code, and it works as expected.