你好。我正在学习 C# 和 WPF,请在我的代码中添加您的代码,这样我就可以轻松理解了。我是Binding
使用CombBox
C# 代码的 WPF 中的一员,我确实需要修复这段代码中的问题,但我无法在我的代码中找到我可以写的更多内容。
string sql = "SELECT " + ColumnsValue + "," + ColumnsName + " FROM " + TableName;
SqlDataAdapter da = new SqlDataAdapter(sql, Connection);
DataSet ds = new DataSet();
da.Fill(ds, TableName);
ComboBox.ItemsSource = ds.Tables[0].DefaultView;
ComboBox.DisplayMemberPath = ds.Tables[0].Columns[ColumnsName].ToString();
ComboBox.SelectedValuePath = ds.Tables[0].Columns[ColumnsValue].ToString();
// Some Code here to to fix this
ComboBox.Selected = "--Select--";
我需要帮助来修复它如何使用一个Select
值作为顶部的选定值ComboBox
。希望有朋友有解决办法。