标签页上的 WPF 组合框文本绑定问题
我正在开发一个遵循 MVVM 的 WPF 应用程序。
我在组合框的文本属性中使用了绑定,并且该组合位于选项卡内。
当我切换选项卡时,Combobox 的文本属性 cahnged 会被触发,文本会设置为 string.Empty。
I am working in a WPF application which follows MVVM.
I have used binding in Combobox's text property and this combo is inside a tab.
When ever I switch tabs, Combobox's text property cahnged is getting fired and text is set to string.Empty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不希望文本为空,您可以尝试:
查看
从注释编辑:
ViewModel
If you don't want the text to ever be empty, you could try:
View
<ComboBox Text={Binding ComboxText} ... />
Edit from Comment:
<ComboBox Text={Binding ComboxText, TargetNullValue=SomeValue} ... />
ViewModel