How to Load Data in the DataGridView Using XML File and C#.
Submitted by janobe on Wednesday, June 12, 2019 - 15:47.
In this tutorial, I will teach you how to Load Data in the DataGridView Using XML File and C#. By doing this program, you will see that the output will be inside the DataGridView displaying the contents of an XML File. For you to have an idea of how this works, simply follow the procedure below.
Choose the “XML File” and named it “person” then click “Add”.
Add data to the XML File.
The complete source code is included. You can download it and run it on your computer.
For any questions about this article. You can contact me @
Email – [email protected]
Mobile No. – 09305235027 – TNT
Or feel free to comment below.
Creating XML FIle
Go to solution explorer and right click the file name. After that select “Add” and hit “New Item”.

- <NewDataSet>
- <person>
- <Name>Janno Palacios</Name>
- <Address>Kabankalan City</Address>
- </person>
- <person>
- <Name>Jeanniebe Palacios</Name>
- <Address>Kabankalan City</Address>
- </person>
- <person>
- <Name>Craig Palacios</Name>
- <Address>Kabankalan City</Address>
- </person>
- <person>
- <Name>Kenjie Palacios</Name>
- <Address>Kabankalan City</Address>
- </person>
- </NewDataSet>
Creating Application
Step 1
Open Microsoft Visual Studio 2015 and create a new windows form application for c#.
Step 2
Add a DataGridView and Button inside the Form just like shown below.
Step 3
Put the XML File in the resources folder by dragging it.
Step 4
Press F7 to open the code editor. In the code editor, create a method to get the data in the XML File and display it into the DataGridView.Step 5
Write the following code to execute the method that you have created when the button is clicked.- private void button1_Click(object sender, EventArgs e)
- {
- LoadPerson(dataGridView1);
- }
Add new comment
- 343 views