I have a WPF ComboBox bound to a ReactiveList and a registered view for a model (IViewFor<MyModel>)
, so it correctly shows the list when the combobox is opened.
The problem is that the selected value is not shown in the combobox when it is closed.
XAML
<DockPanel>
<ComboBox x:Name="SourceSystemDatabases" />
</DockPanel>
Binding
this.OneWayBind(ViewModel, vm => vm.SourceDatabases, view => view.SourceSystemDatabases.ItemsSource);
Opened combobox
Closed combobox with no text