我正在从Windows窗体移动到wpf,但现在我遇到了问题。
我从数据库(sql server)获取信息并将其存储在数据集中,我想在数据网格中显示(dg)
DataSet ds = new DataSet();
SqlConnection sc = new SqlConnection("mysqlconnection");
SqlDataAdapter sd = new SqlDataAdapter();
sc.Open();
sd.SelectCommand = new SqlCommand("SELECT * FROM table_1", sc);
sd.Fill(ds);
dg.DataContext = ds.Tables[0].DefaultView;//here is the problem
sc.Close();
在Windows窗体中它是dg.DataSrouce
但我在wpf中找不到任何帮助吗?
答案 0 :(得分:3)
将ItemsSource="{Binding}"
添加到DataGrid
定义或更改
dg.DataContext = ds.Tables[0].DefaultView;
到
dg.ItemsSource = ds.Tables[0].DefaultView;
<强>更新强>
尝试添加AutoGenerateColumns="True"
<DataGrid Name="dg"
AutoGenerateColumns="True"
ItemsSource="{Binding}"
...>