WPF DataGrid绑定到数据源的方法

Posted zhaotianff

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF DataGrid绑定到数据源的方法相关的知识,希望对你有一定的参考价值。

 1 string conStr = System.Configuration.ConfigurationManager.ConnectionStrings["str"].ConnectionString;
 2             SqlConnection con = new SqlConnection(conStr);
 3             SqlCommand command = new SqlCommand();
 4             command.CommandText = "select * from test";
 5             command.Connection = con;
 6             command.CommandType = System.Data.CommandType.Text;
 7             try
 8             {
 9                 con.Open();
10                 SqlDataAdapter sda = new SqlDataAdapter(command);
11                 DataSet ds = new DataSet();
12                 sda.Fill(ds,"Test");
13                 DataTable dt = ds.Tables["Test"];
14                 this.data.ItemsSource = dt.DefaultView;
15             }
16             catch
17             {
18                 MessageBox.Show("error");
19             }

 

以上是关于WPF DataGrid绑定到数据源的方法的主要内容,如果未能解决你的问题,请参考以下文章

DataGrid中的WPF绑定到DataContext

找不到将Wpf DataGrid列绑定到属性的方法[关闭]

WPF MVVM 将 ComboBox 绑定到 Datagrid 选定项

使用 TemplateColumns 将 WPF DataGrid 绑定到 DataTable

WPF DataGrid的可见性

将wpf datagrid导出为自定义Excel CSV文件