标签页上的 WPF 组合框文本绑定问题

发布于 2024-10-14 07:23:44 字数 137 浏览 1 评论 0原文

我正在开发一个遵循 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 技术交流群。

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

发布评论

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

评论(1

谁人与我共长歌 2024-10-21 07:23:44

如果您不希望文本为空,您可以尝试:

查看

从注释编辑:

ViewModel

/*INotifyPropertyChanged property*/
private string comboxText;
public string ComboxText 
{  get { return comboxText; }  
   set { 
      if (value != comboxText)  
      {// value changed ->  
         if (!string.IsNullOrWhiteSpace(value))   
         {// value not null, empty, whitespace ->  
            comboxText = value;
         }  
         /*INPC code*/
      }  
   }
}

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

/*INotifyPropertyChanged property*/
private string comboxText;
public string ComboxText 
{  get { return comboxText; }  
   set { 
      if (value != comboxText)  
      {// value changed ->  
         if (!string.IsNullOrWhiteSpace(value))   
         {// value not null, empty, whitespace ->  
            comboxText = value;
         }  
         /*INPC code*/
      }  
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文