Introduction
This article explains how to use a DataGrid control in WPF and bind to a DataGrid in a WPF 4.5 application using SQL Server as the database.
- WPF ApplicationFrom
- DataGrid control
- SQL Server Database
Download the preceding SqlServer_Emp.zip file and extract the Emp.Sql from the Zip file and open the file and execute the command in SQL Server Management Studio. It will create the table named "Emp" in the "WpfPractice" database.
Now your Database is Ready
Next create a new project using "File" > "New" > "Project..." > "WPF Application" and name it: "DataBindingControls".
![databind controls]()
Now right-click the "DataBindingControls" in Solution Explorer and click on Add -> New Item then choose the Language as Visual C# then select Window (WPF) and click on Add.
![window wpf]()
Design the DataGridbindData window using the following controls from the ToolBox.
Now from the Toolbox select:
- Grid
- Text block
- DataGrid control
- Button
- StackPanel
![common wpf controls]()
Now design your DataGridbindData.xaml View design part use the following code.
You will get the DataGridbindData.xaml window form.
![Cdata grid Bind Data]()
Now add your database table into your application using an ADO.NET Entity Data Model.
Right-click the "DataBindingControls"in Solution Explorer and click on Add -> New Item then choose the Language as Visual C# then select Data then select ADO.NET Entity Data Model and click on Add.
From the choose model contents select Generate from the Database then click on the "Next >" button.
![choose Model Contents]()
Click on New connection.
![new connection]()
Provide the credentials and select the database name as WpfPractice and click on the Ok button.
![choose your database object and setting]()
Check the tables checkbox and click on Finish.
Automatically it will write the connection string into your App.config file.
The auto-generated App.Config is as follows.
- Now, in the code behind file “DataGridbindData.xaml.cs“ use the following code.
-
Open Your App.xaml file and and set StartupUri="DataGridbindData.xaml".
Run the application.
![display data]()
Now click on the Display Data Button. Here is the output.
![show data]()
I hope this article is useful. If you have any other questions then please provide your comments below.