91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

datagridview綁定數據

發布時間:2020-06-12 13:23:36 來源:網絡 閱讀:502 作者:追逐779 欄目:編程語言

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的值,將每個節點的值存入BindingList中,并將其作為gridview的數據源
            string addr, kind, num, mark ;         
            BindingList<Form1> bdlst = new BindingList<Form1>();
            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數據存入dataset,通過dataset直接作為數據源展示
        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數據存入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.改變列標題,及列寬
            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;

記錄下來,希望對自己和需要的人有所幫助! 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

炎陵县| 武陟县| 安平县| 宁强县| 上犹县| 余姚市| 宿松县| 长宁区| 九龙城区| 饶平县| 玉环县| 方正县| 景洪市| 利津县| 巧家县| 林西县| 左贡县| 焉耆| 宜川县| 巩留县| 阿鲁科尔沁旗| 龙山县| 赞皇县| 屏南县| 塔河县| 开化县| 海林市| 深水埗区| 永顺县| 洛宁县| 东莞市| 南川市| 墨竹工卡县| 黄陵县| 灌阳县| 昌邑市| 凤冈县| 靖西县| 清徐县| 乐山市| 手游|