我需要将以下XAML转换为代码隐藏:
<ComboBox SelectedItem="{Binding Level}" ItemsSource="{Binding Levels}" />
但是,此代码无法编译:
new ComboBox() { SelectedItem = new Binding("Level"), ItemsSource = new Binding("Levels") }
错误:“无法将类型'System.Windows.Data.Binding'隐式转换为'System.Collections.IEnumerable'。存在显式转换(您是否错过了转换?)”。我该如何演员?
答案 0 :(得分:3)
ComboBox cbo=new ComboBox();
cbo.SetBinding(ComboBox.SelectedItemProperty,new Binding("Level"){ /* set properties here*/});
cbo.SetBinding(ComboBox.ItemsSourceProperty,new Binding("Levels"));
....