用异步等待方法填充数据网格
我想使用上面链接中的功能。
using MySqlConnection con = new(Common.JOIN);
con.Open();
MySqlCommand cmd = new(
$"SELECT * FROM item WHERE CONCAT (`i_type`) like '{type.Text}' ORDER BY `i_name` ASC;", con);
MySqlDataAdapter adp = new(cmd);
DataSet ds = new();
adp.Fill(ds, "LoadDataBinding");
datagrid.DataContext = ds;
语气可能有点奇怪。我通过谷歌翻译问了一个问题。
我使用的代码如上所述。
使用我在链接中的链接中使用的代码我该如何修复它?
我正在使用C#WPF。
如果您要更换这一行
datagrid.DataContext = ds;
有了这个
datagrid.ItemsSource = ds.Tables["LoadDataBinding"].DefaultView;
然后它应该工作