导读 | 这篇文章介绍了DataGridView清除显示的数据、设定右键菜单的方法,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 |
this.dgv_PropDemo.DataSource = null
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清除显示的数据、设定右键菜单的文章就介绍到这了。
原文来自:
本文地址://gulass.cn/data-grid-view.html编辑:向金平,审核员:逄增宝
Linux大全:
Linux系统大全: