Can a WPF ComboBox display alternative text when its selection is null?
- by Garth T Kidd
G'day!
I want my WPF ComboBox to display some alternative text when its data-bound selection is null.
The view model has the expected properties:
public ThingoSelectionViewModel : INotifyPropertyChanged {
public ThingoSelectionViewModel(IProvideThingos) {
this.Thingos = IProvideThingos.GetThingos();
}
public…