DataGridView清除顯示的資料、設定右鍵選單詳解

大雄45發表於2022-03-17
導讀 這篇文章介紹了DataGridView清除顯示的資料、設定右鍵選單的方法,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
一、清空資料
1、DataGridView未繫結資料時清空資料
this.dgv_PropDemo.DataSource = null
2、DataGridView繫結資料時清空資料

DataGridView繫結了資料就不能使用this.dgv_PropDemo.DataSource = null清空資料了,使用this.dgv_PropDemo.DataSource = null不僅會清空資料,而且也會把DataGridView的列清空掉,這時就要使用如下的程式碼清空顯示的資料:

DataTable dt = this.dgv_PropDemo.DataSource as DataTable;
dt.Rows.Clear();
this.dgv_PropDemo.DataSource = dt;
二、設定右鍵選單

DataGridView,DataGridViewColumn,DataGridViewRow,DataGridViewCell有ContextMenuStrip屬性。可以透過設定ContextMenuStrip物件來控制DataGridView的右鍵選單的顯示。

DataGridViewColumn的ContextMenuStrip屬性設定除了列頭以外的單元格的右鍵選單。

DataGridViewRow的ContextMenuStrip屬性設定除了行頭以外的單元格的右鍵選單。

DataGridViewCell的ContextMenuStrip屬性設定指定單元格的右鍵選單。

對於單元格上的右鍵選單的設定,優先順序是:Cell>Row>Column>DataGridView

利用CellContextMenuStripNeeded、RowContextMenuStripNeeded事件可以設定單元格的右鍵選單,尤其是需要右鍵選單根據單元格值的變化而變化的時候。比起使用迴圈遍歷,使用該事件來設定右鍵選單的效率更高。

說明:CellContextMenuStripNeeded事件處理方法的引數中,e.RowIndex=-1表示列頭,e.ColumnIndex=-1表示行頭。RowContextMenuStripNeeded則不存在e.ColumnIndex=-1的情況。

示例一:
//設定DataGridView的右鍵選單
this.dgv_Users.ContextMenuStrip = cmsDgv;
//設定列的右鍵選單
this.dgv_Users.Columns[1].ContextMenuStrip = cmsColumn;
//設定列頭的右鍵選單
this.dgv_Users.Columns[1].HeaderCell.ContextMenuStrip = cmsHeaderCell;
//設定行的右鍵選單
this.dgv_Users.Rows[2].ContextMenuStrip = cmsRow;
//設定單元格的右鍵選單
this.dgv_Users[1, 2].ContextMenuStrip = cmsCell;
示例二:
private void dgv_Users_CellContextMenuStripNeeded(object sender, DataGridViewCellContextMenuStripNeededEventArgs e)
{
    DataGridView dgv = sender as DataGridView;
    if (e.RowIndex < 0)
    {
         //設定列頭右鍵
         e.ContextMenuStrip = cmsHeaderCell;
    }
    else if (e.ColumnIndex < 0)
    { 
          //設定行頭右鍵選單
          e.ContextMenuStrip = cmsRow;
     }
     else if (dgv[e.ColumnIndex, e.RowIndex].Value.ToString().Equals("男"))
     {
           e.ContextMenuStrip = cmsCell;
     }
     else
     {
           e.ContextMenuStrip = cmsDgv;
     }
}

到此這篇關於DataGridView清除顯示的資料、設定右鍵選單的文章就介紹到這了。

原文來自:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2871531/,如需轉載,請註明出處,否則將追究法律責任。

相關文章