作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已通过编程方式将登录按钮添加到 DataGridView。我想检查数据库中的登录时间字段,如果它为空,则按钮名称应为 login
,否则它的名称应为 logout
。
private void frmAttendance_Load(object sender, EventArgs e)
{
GetData();//Fetch data from database
DataGridViewButtonColumn buttonLogin = new DataGridViewButtonColumn();
buttonLogin.Name = "Login";
buttonLogin.Text = "Login";
buttonLogin.UseColumnTextForButtonValue = true;
dataGridView1.Columns.Add(buttonLogin);
// Add a CellClick handler to handle clicks in the button column.
dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
}
最佳答案
要添加按钮列,您可以:
var button=new DataGridViewButtonColumn();
button.Name="LoginButton";
button.HeaderText="Login";
button.Text = "Login";
button.UseColumnTextForButtonValue = true;
this.dataGridView1.Columns.Add(button);
动态设置按钮栏文字
要在每个按钮上显示“登录”文本,设置就足够了:
button.Text = "Login";
button.UseColumnTextForButtonValue = true;
此外,如果您需要为按钮设置不同的文本,您可以使用 DataGridView
的 CellFormatting
事件并设置这些单元格的值:
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
//If this is header row or new row, do nothing
if (e.RowIndex < 0 || e.RowIndex == this.dataGridView1.NewRowIndex)
return;
//If formatting your desired column, set the value
if (e.ColumnIndex=this.dataGridView1.Columns["LoginButton"].Index)
{
//You can put your dynamic logic here
//and use different values based on other cell values, for example cell 2
//this.dataGridView1.Rows[e.RowIndex].Cells[2].Value
e.Value = "Login";
}
}
您应该将此处理程序分配给 CellFormating
事件:
this.dataGridView1.CellFormatting += dataGridView1_CellFormatting;
关于c# - 如何将按钮名称和文本动态添加到 gridview 按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33166226/
我是一名优秀的程序员,十分优秀!