DataGridView.EditingControlShowing Event
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Event EditingControlShowing As DataGridViewEditingControlShowingEventHandler 'Usage Dim instance As DataGridView Dim handler As DataGridViewEditingControlShowingEventHandler AddHandler instance.EditingControlShowing, handler
/** @event */ public void add_EditingControlShowing (DataGridViewEditingControlShowingEventHandler value) /** @event */ public void remove_EditingControlShowing (DataGridViewEditingControlShowingEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
You can handle this event to perform custom initialization of the editing control when a cell enters edit mode. To customize the display characteristics of the control, set the properties of the object returned by the DataGridViewEditingControlShowingEventArgs.CellStyle property rather than setting the properties of the control returned by the DataGridViewEditingControlShowingEventArgs.Control property.
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 current cell. To run this example, paste the code into a form that contains a DataGridView named dataGridView1 and ensure that the EditingControlShowing event is associated with the event handler.
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
DataGridViewTextBoxEditingControl
DataGridViewComboBoxEditingControl
IDataGridViewEditingControl
DataGridViewEditingControlShowingEventHandler
DataGridViewEditingControlShowingEventArgs
DataGridViewEditingControlShowingEventArgs.CellStyle
DataGridViewEditingControlShowingEventArgs.Control