Expand Minimize
1 out of 1 rated this helpful - Rate this topic

DataGridView.CellEnter Event

Occurs when the current cell changes in the DataGridView control or when the control receives input focus.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

public event DataGridViewCellEventHandler CellEnter
/** @event */
public void add_CellEnter (DataGridViewCellEventHandler value)

/** @event */
public void remove_CellEnter (DataGridViewCellEventHandler value)

In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.

This event may occur twice for a single click if the control does not have input focus and the clicked cell was not previously the current cell.

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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.