我已經在DataGridView上添加了CellFormatting事件的處理程序,以根據行的內容修改背景顏色。DataGridView CellFormatting事件不會觸發
即使數據被插入表中,它似乎也不會被觸發。我通過在CellFormatting事件的IDE中雙擊來添加事件處理程序,這似乎正確地創建了代碼。
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
// this never gets called
MessageBox.Show("Event fired");
}
我能做什麼錯?
我結束了使用RowsAdded事件捕獲我所需要的。謝謝! – Dave 2011-04-21 02:39:19