WPF combobox binding from code behind

余生长醉 提交于 2019-12-04 03:43:39

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!