我在Listview中有一个网格视图,所有其他文本框都没有任何问题但没有任何问题,但组合框没有,我只能为组合框提供两个值(是/否),它应该相应地在数据绑定上显示它
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;
}
请给我解决方案,我已经搜索了很多,没有我得到正确的解决方案。