Если вы не хотите, чтобы текст был пустым, вы можете попробовать:
View
<ComboBox Text={Binding ComboxText} ... />
Редактировать из комментария:
<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*/
}
}
}