WPF combobox binding from code behind
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});
精彩评论