DataGridView,Dataset,DataTable,DataRow等使用心得

DataGridView的列編輯:spa

Name:用於調用屬性的時候用的,也能夠不使用Name去調用,選擇數字1,2,3...選擇第1列,第2列,第3列。code

HeaderText:表頭顯示的名字方便用戶使用。blog

DataPropertyName:該列與綁定的表的哪一個屬性對應。通常狀況編輯的列與綁定的表屬性名一一對應。事件

單擊事件:click。it

雙擊事件:doubleclick。io

獲取當前所在行並獲取當前行某一列:table

   int RowIndex = goodsdataGridView.CurrentCell.RowIndex;   //獲取當前第幾行ast

      goodsdataGridView.Rows[RowIndex].Cells[0].Value.ToString();   //cell[0]表示第0列,class

      能夠用數字表示,但可能會亂序,最好在列編輯中給列的Name屬性賦值如取叫ID,而後用這個名cli

      字引用如goodsdataGridView.Rows[RowIndex].Cells["ID"].Value.ToString();   

DataTable:

建立一張表: DataTable goodslist = new DataTable();

爲這張表添加列名(屬性名):goodslist.Columns.Add("name1");

爲這張表添加數據:DataRow dr = goodslist.NewRow();  dr["name1"] = "name";

將這張表綁定到DataGridView:  dataGridView1.DataSourse=goodslist;

若是這張表的屬性名和DataGridView的列名相同的話,會自動匹配到已編輯的列,不然會創新列出來,表頭的名字和列名同樣。

 

DataSet:

將DataTable放入DataSet: goodslist.TableName="table1"; DataSet ds=new DataSet();  ds.Table.Add(goodslist.copy());

將DataTable從DatatSet中取出:DataTable dt = ds.Tables["table1"];

DataRow:

判斷一張DataTable裏面每一行的狀態(修改,刪除,新增):

foreach (DataRow datarow in dataset.Tables["master"].Rows)
                {
                    switch (datarow.RowState)
                    {
                        case DataRowState.Modified:
                            {
                                if (datarow[1, DataRowVersion.Current] != datarow[1, DataRowVersion.Original])
                                {

                                }
                                break;
                            }
                        case DataRowState.Added:
                            {
                                break;
                            }
                        case DataRowState.Deleted:
                            {

                                break;
                            }
                }
相關文章
相關標籤/搜索