gpt4 book ai didi

c# - DataGridView CellFormatting 事件未触发

转载 作者:可可西里 更新时间:2023-11-01 11:21:57 25 4
gpt4 key购买 nike

我为 DataGridView 上的 CellFormatting 事件添加了一个处理程序,以根据行的内容修改背景颜色。

即使将数据插入表中,它似乎也没有触发。我通过在 IDE 中双击 CellFormatting 事件来添加事件处理程序,这似乎正确地创建了代码。

   private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
// this never gets called
MessageBox.Show("Event fired");
}

我做错了什么?

最佳答案

我认为您不能为您的案例使用 CellFormating 事件。当单元格的内容需要格式化以显示时会发生。

改为尝试 CellValueChanged 事件 (http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellvaluechanged.aspx)

或者

http://msdn.microsoft.com/en-us/library/x4dwfh7x.aspx中选择其他合适的事件

关于c# - DataGridView CellFormatting 事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5736534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com