This code will allow you to read the data from the XML file and display it in the datagridview.
DataSet ds = new DataSet();
private void Form1_Load(object sender, EventArgs e)
{
ds.ReadXml("Data.xml");
dataGridView1.DataSource = ds.Tables[0];
}
To Delete a Row from the DataGridView use the Following Code
private void button1_Click(object sender, EventArgs e)
{
dataGridView1.Rows.RemoveAt(rIndex);
}
int rIndex;
private void dataGridView1_RowEnter(object sender, DataGridViewCellEventArgs e)
{
rIndex = e.RowIndex;
}
The XML File is as Follows
<?xml version="1.0" encoding="utf-8" ?>
<Company>
<Employee>
<EmpID>1</EmpID>
<EmpName>Hefin</EmpName>
<EmpSales1>100</EmpSales1>
<EmpSales2>50</EmpSales2>
<EmpSales3>70</EmpSales3>
</Employee>
</Company>
Regards
Hefin Dsouza.