1.直接讀取xml并將值賦給datagridview
xmlDoc.Load("deviceInfo.xml");
XmlNodeList nodelist = xmlDoc.SelectSingleNode("DEVICE").ChildNodes;
foreach (XmlNode xn in nodelist)
{
XmlElement xe = (XmlElement)xn;
int index = dataGridView1.Rows.Add();
DataGridViewRow newrow = dataGridView1.Rows[index];
newrow.Cells[0].Value = xe.ChildNodes.Item(0).InnerText;
newrow.Cells[1].Value = xe.ChildNodes.Item(1).InnerText;
newrow.Cells[2].Value = xe.ChildNodes.Item(2).InnerText;
newrow.Cells[3].Value = xe.ChildNodes.Item(3).InnerText;
newrow.Cells[4].Value = xe.ChildNodes.Item(4).InnerText;
newrow.Cells[5].Value = xe.ChildNodes.Item(5).InnerText;
newrow.Cells[6].Value = xe.ChildNodes.Item(6).InnerText;
newrow.Cells[7].Value = xe.ChildNodes.Item(7).InnerText;
newrow.Cells[8].Value = xe.ChildNodes.Item(8).InnerText;
newrow.Cells[9].Value = xe.ChildNodes.Item(9).InnerText;
newrow.Cells[10].Value = xe.ChildNodes.Item(10).InnerText;
newrow.Cells[11].Value = xe.ChildNodes.Item(11).InnerText;
newrow.Cells[12].Value = xe.ChildNodes.Item(12).InnerText;
newrow.Cells[13].Value = xe.ChildNodes.Item(13).InnerText;
newrow.Cells[14].Value = xe.ChildNodes.Item(14).InnerText;
newrow.Cells[15].Value = xe.ChildNodes.Item(15).InnerText;
newrow.Cells[16].Value = xe.ChildNodes.Item(16).InnerText;
newrow.Cells[17].Value = xe.ChildNodes.Item(17).InnerText;
newrow.Cells[18].Value = xe.ChildNodes.Item(18).InnerText;
newrow.Cells[19].Value = xe.ChildNodes.Item(19).InnerText;
}
2.給類中定義屬性變量,讀取xml的值,將每個(gè)節(jié)點(diǎn)的值存入BindingList中,并將其作為gridview的數(shù)據(jù)源
string addr, kind, num, mark ;
BindingList
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("deviceInfo.xml");
XmlNodeList nodelist = xmlDoc.SelectSingleNode("DEVICE").ChildNodes;
foreach (XmlNode xn in nodelist)
{
Form1 frm = new Form1();
frm.addr = xe.ChildNodes.Item(0).ToString();
frm.kind = xe.ChildNodes.Item(1).ToString();
frm.num = xe.ChildNodes.Item(2).ToString();
frm.mark = xe.ChildNodes.Item(3).ToString();
bdlst.Add(frm);*/
}
dataGridView1.DataSource = bdlst;
3.將xml數(shù)據(jù)存入dataset,通過dataset直接作為數(shù)據(jù)源展示
DataSet ds = new DataSet();
BindingSource bd = new BindingSource();
ds.ReadXml("deviceInfo.xml");
dataGridView1.Columns.Clear();
bd.DataSource = ds.Tables[0].DefaultView;
dataGridView1.DataSource = bd;
4. 將xml數(shù)據(jù)存入dataset,通過將dataset中的值一一取出賦給datagridview中的單元格
ds.ReadXml("deviceInfo.xml");
dataGridView1.Rows.Clear();
dataGridView1.Rows.Add(ds.Tables[0].Rows.Count);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
for (int j = 0; j < ds.Tables[0].Rows.Count; j++)
{
dataGridView1.Rows[i].Cells[j].Value = ds.Tables[0].Rows[i].ItemArray[j];
}
}
5.改變列標(biāo)題,及列寬
dataGridView1.Columns[0].HeaderText = "1";
dataGridView1.Columns[0].Width = 20;
dataGridView1.Columns[1].HeaderText = "2";
dataGridView1.Columns[1].Width = 20;
dataGridView1.Columns[2].HeaderText = "3";
dataGridView1.Columns[2].Width = 20;
記錄下來,希望對(duì)自己和需要的人有所幫助!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。