'這是我的代碼部分:如何在網格視圖C#中顯示XML文件的結果?
if (radioButton2.Checked)
{
int gthan = int.Parse(textBox2.Text);
foreach (XmlNode n in doc.SelectNodes("/employees/employee/salary"))
{
int curr = Int32.Parse(n.InnerText);
if (curr <gthan)
{ noe++;
}
}
MessageBox.Show("number of employees" + +noe);}
` 我取得了XML文件表預製就像把薪等,但如何告訴程序顯示有薪孩子一些功能在Windows窗體應用程序中的網格視圖?
你能提供一個MCVE(http://stackoverflow.com聲明/ help/mcve)顯示你已經嘗試了什麼,哪些不起作用? – DVK