我在 Listview 中有一个 Grid 视图,所有其他文本框都可以毫无问题地绑定,但组合框没有,组合框只有两个可能的值(是/否),它应该在数据绑定上相应地显示它。
XAML:
<ComboBox Width="60" HorizontalAlignment="Left" Name="tbJobDesttcrjiption"
SelectedItem="{Binding Path=ExpCertificate, Mode=TwoWay}"
SelectedIndex="0"
ItemsSource="{Binding}">
<System:String>Yes</System:String >
<System:String>No</System:String>
</ComboBox>
代码背后:
cmd = new SqlCommand("getrelatedexperience", sqlconn.con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@EmployeeID", empid);
SqlDataAdapter daexp = new SqlDataAdapter(cmd);
DataTable dtexp = new DataTable();
int kexp = daexp.Fill(dtexp);
commonDB = dtexp;
if (kexp > 0)
{
gvWExgp.ItemsSource = dtexp.DefaultView;
}
请给我解决方案,我已经搜索了很多没有找到正确解决方案的地方。