DataTable dt = null;
public DataTable SetTable()
{
dt = new DataTable();
dt.Columns.Add("Infor", Type.GetType("System.String"));
DataRow dr = dt.NewRow();
dr["Infor"] = "one";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr["Infor"] = "two";
dt.Rows.Add(dr);
return dt;
}
public void Bind()
{
SetTable();
this.comboBox1.ItemsSource = dt.AsDataView();
this.comboBox1.DisplayMemberPath = "Infor";
}
这里的表我是自己定义的,你只要换成你要的就行,测试通过。