How can I bind an IList
item to a ComboBox
through the codebehind.cs file.
Please explain with simple steps.
I need the steps for two way binding, not by setting ItemsSource
.
I need something like:
myComboBox.SetBinding(ItemsControl.ItemsSourceProperty,
new Binding { Source = myList });
but I need the SelectedItem
also.
Thanks
Do you mean something like this?
myComboBox.SetBinding(
ItemsControl.ItemsSourceProperty,
new Binding { Source = myList });
myComboBox.SetBinding(
Selector.SelectedItemProperty,
new Binding("SelectedItem") { Source = mySelectedItemSource});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With