问题
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
回答1:
Do you mean something like this?
myComboBox.SetBinding(
ItemsControl.ItemsSourceProperty,
new Binding { Source = myList });
myComboBox.SetBinding(
Selector.SelectedItemProperty,
new Binding("SelectedItem") { Source = mySelectedItemSource});
来源:https://stackoverflow.com/questions/2193627/wpf-combobox-binding-from-code-behind