DataGridView.CellLeave Event
Assembly: System.Windows.Forms (in system.windows.forms.dll)
For more information about handling events, see Consuming Events.
The following code example illustrates how to handle this event to change the SelectionBackColor property of the current cell. In this example the selection background color is set in the CellEnter event, then reset to Empty on the CellLeave event. To run this example, paste the code into a form that contains a DataGridView named dataGridView1 and ensure that all events are associated with their event handlers.
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e) { dataGridView1[e.ColumnIndex, e.RowIndex].Style .SelectionBackColor = Color.Blue; } private void dataGridView1_CellLeave(object sender, DataGridViewCellEventArgs e) { dataGridView1[e.ColumnIndex, e.RowIndex].Style .SelectionBackColor = Color.Empty; }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
DataGridView ClassDataGridView Members
System.Windows.Forms Namespace
Other Resources
DataGridView Control (Windows Forms)If I enter a cell (it happens to be a comboBox cell) and select a value, then leave, when this event fires the value of the cell is still null. Why? and what event can I handle that happens when the user leaves the cell, but will let me know the value of the cell?
- 11/14/2008
- Mike Parker