怎么更改DataGridViewButtonColumn的文本值,原来显示的“停用”,我点击一下,他就变成“启用”,
展开全部
实现的具体方法如下:
1. 给DataGridView添加一列 DataGridViewButtonColumn,设置该列的属性如下:
DefaultCellStyle 的 NullValue 设置为 “启用”
UseColumnTextForButtonValue = False
其他属性自己根据需要设置
2. 在DataGridView的CellContentClick事件中,写入如下的类似代码:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//注释:
//dataGridView1.Columns[e.ColumnIndex] is DataGridViewButtonColumn 说明点击的列是DataGridViewButtonColumn列,当然你也根据e.ColumnIndex == 你的按钮列的索引来做
// e.RowIndex > -1 ,说明点击的不是列头
if (dataGridView1.Columns[e.ColumnIndex] is DataGridViewButtonColumn && e.RowIndex > -1)
{
//获取当前被点击的单元格
DataGridViewButtonCell vCell =
(DataGridViewButtonCell)dataGridView1.CurrentCell;
if (vCell.Tag == null)
{
vCell.Value = "停用";
vCell.Tag = true;
}
}
}
1. 给DataGridView添加一列 DataGridViewButtonColumn,设置该列的属性如下:
DefaultCellStyle 的 NullValue 设置为 “启用”
UseColumnTextForButtonValue = False
其他属性自己根据需要设置
2. 在DataGridView的CellContentClick事件中,写入如下的类似代码:
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//注释:
//dataGridView1.Columns[e.ColumnIndex] is DataGridViewButtonColumn 说明点击的列是DataGridViewButtonColumn列,当然你也根据e.ColumnIndex == 你的按钮列的索引来做
// e.RowIndex > -1 ,说明点击的不是列头
if (dataGridView1.Columns[e.ColumnIndex] is DataGridViewButtonColumn && e.RowIndex > -1)
{
//获取当前被点击的单元格
DataGridViewButtonCell vCell =
(DataGridViewButtonCell)dataGridView1.CurrentCell;
if (vCell.Tag == null)
{
vCell.Value = "停用";
vCell.Tag = true;
}
}
}
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
展开全部
在单击事件里写:Button btn=((Button)sender).Text;
if(btn.Text=="启用")
{
btn.Text="停用";
}
else
{
btn.Text="启用";
}
if(btn.Text=="启用")
{
btn.Text="停用";
}
else
{
btn.Text="启用";
}
追问
能具体点么??
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个问题以前有很多人问过的,你可以找找:
基本就是在按钮点击事件中,判断if text 等于 停用 { text=启用} else {text=停用}
基本就是在按钮点击事件中,判断if text 等于 停用 { text=启用} else {text=停用}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
asp.net还是winfrom呀,哪个.net版本?
追问
老大, winfrom中,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询