您好,欢迎访问三七文档
当前位置:首页 > 电子/通信 > 综合/其它 > DataGridViewButtonColumn的使用—动态改变按钮的文本
.Net的DataGridView控件中,提供了一种列的类型,叫DataGridViewButtonColumn,这种列类型是展示为一个按钮,可以给button赋予相应的text,并且,此button可以用来做处理事件的判断依据。在正式开始介绍使用方法之前,我们先要进行一个概念性的说明:DataGridViewButtonColumn,虽然在UI展现上,是一个BUTTON的样子,但是,它的实际形态,并不是传统意义的BUTTON,而是渲染出来的样式,完全是painting的效果而已。所以,对于传统意义的BUTTON的那一套在这里都失效啦今天,我们先来说一下,如何根据需要动态改变某个button显示的文本程序实现的效果图如下实现的步骤:1.给DataGridView添加一列DataGridViewButtonColumn,设置该列的属性如下:DefaultCellStyle的NullValue设置为“启用”UseColumnTextForButtonValue=False其他属性自己根据需要设置2.在DataGridView的CellContentClick事件中,写入如下的类似代码:privatevoiddataGridView1_CellContentClick(objectsender,DataGridViewCellEventArgse){//注释://dataGridView1.Columns[e.ColumnIndex]isDataGridViewButtonColumn说明点击的列是DataGridViewButtonColumn列,当然你也根据e.ColumnIndex==你的按钮列的索引来做//e.RowIndex-1,说明点击的不是列头if(dataGridView1.Columns[e.ColumnIndex]isDataGridViewButtonColumn&&e.RowIndex-1){//获取当前被点击的单元格DataGridViewButtonCellvCell=(DataGridViewButtonCell)dataGridView1.CurrentCell;if(vCell.Tag==null){vCell.Value=“停用”;vCell.Tag=true;}}}
本文标题:DataGridViewButtonColumn的使用—动态改变按钮的文本
链接地址:https://www.777doc.com/doc-2909467 .html