DataGridView.RowEnter Event
Assembly: System.Windows.Forms (in system.windows.forms.dll)
This event occurs when the DataGridView is initially loaded, as well as when the user selects a row other than the current row.
For more information about handling events, see Consuming Events.
The following code example illustrates how to handle this event to change the BackColor property of the cells in the current row. In this example, the background color is set in the RowEnter event, then reset to Empty on the RowLeave 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_RowEnter(object sender, DataGridViewCellEventArgs e) { for (int i = 0; i < dataGridView1.Rows[e.RowIndex].Cells.Count; i++) { dataGridView1[i, e.RowIndex].Style.BackColor = Color.Yellow; } } private void dataGridView1_RowLeave(object sender, DataGridViewCellEventArgs e) { for (int i = 0; i < dataGridView1.Rows[e.RowIndex].Cells.Count; i++) { dataGridView1[i, e.RowIndex].Style.BackColor = 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