我添加了一个组合框来添加新的静态值作为..
在 XAML 上:
<ComboBox Name="cmbBoxControlTypes" ItemsSource="{Binding}"></ComboBox>
关于页面加载背后的代码:
MMVVMControl.cmbBoxControlTypes.Items.Add(new CustomComboBoxItem("Text Box", "0"));
MMVVMControl.cmbBoxControlTypes.Items.Add(new CustomComboBoxItem("Pick List", "1"));
MMVVMControl.cmbBoxControlTypes.Items.Add(new CustomComboBoxItem("Check Box", "2"));
编辑时:
MMVVMControl.cmbBoxControlTypes.SelectedValue = dtDataList.Rows[0]["Controls"].ToString();
分配选定的值后,我得到空值。请有人告诉我如何解决这个问题。