1
任何人都可以幫助我從數據表中設置combobox或combobox編輯值嗎? 在的WinForms它是這樣的:如何將ComboBox或ComboboxEdit綁定到DataTable
DataSet dataBases = GetDatabases();
if ((dataBases != null) && (dataBases.Tables[0].Rows.Count > 0))
{
comboBoxDataBases.DisplayMember = "DbName";
comboBoxDataBases.DataSource = dataBases.Tables[0];
if (comboBoxDataBases.FindStringExact(tempDBName) > 0)
{
comboBoxDataBases.SelectedIndex = comboBoxDataBases.FindStringExact(tempDBName);
}
}
else
{
comboBoxDataBases.DataSource = null;
}
我怎麼可以用WPF做相同的功能?
任何人都可以發佈一些簡單的例子。提前感謝。