DataGridViewCell.InitializeEditingControl Methode

Definition

Initialisiert das Steuerelement zum Bearbeiten der Zelle.

public:
 virtual void InitializeEditingControl(int rowIndex, System::Object ^ initialFormattedValue, System::Windows::Forms::DataGridViewCellStyle ^ dataGridViewCellStyle);
public virtual void InitializeEditingControl (int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);
public virtual void InitializeEditingControl (int rowIndex, object? initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle);
abstract member InitializeEditingControl : int * obj * System.Windows.Forms.DataGridViewCellStyle -> unit
override this.InitializeEditingControl : int * obj * System.Windows.Forms.DataGridViewCellStyle -> unit
Public Overridable Sub InitializeEditingControl (rowIndex As Integer, initialFormattedValue As Object, dataGridViewCellStyle As DataGridViewCellStyle)

Parameter

rowIndex
Int32

Der nullbasierte Zeilenindex der Position der Zelle.

initialFormattedValue
Object

Ein Object, das den Wert darstellt, der von der Zelle angezeigt wird, wenn mit der Bearbeitung begonnen wird.

dataGridViewCellStyle
DataGridViewCellStyle

Ein DataGridViewCellStyle, der den Stil der Zelle darstellt.

Ausnahmen

Es ist keine zugeordnete DataGridView vorhanden, oder ihr ist kein Bearbeitungssteuerelement zugeordnet.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie die InitializeEditingControl -Methode in einer einfachen Klasse überschrieben wird, die von der DataGridViewTextBoxCell -Klasse abgeleitet wird. Dieses Beispiel ist Teil eines größeren Codebeispiels, das unter How to: Host Controls in Windows Forms DataGridView Cells bereitgestellt wird.

public class CalendarCell : DataGridViewTextBoxCell
{

    public CalendarCell()
        : base()
    {
        // Use the short date format.
        this.Style.Format = "d";
    }

    public override void InitializeEditingControl(int rowIndex, object 
        initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle)
    {
        // Set the value of the editing control to the current cell value.
        base.InitializeEditingControl(rowIndex, initialFormattedValue, 
            dataGridViewCellStyle);
        CalendarEditingControl ctl = 
            DataGridView.EditingControl as CalendarEditingControl;
        // Use the default row value when Value property is null.
        if (this.Value == null)
        {
            ctl.Value = (DateTime)this.DefaultNewRowValue;
        }
        else
        {
            ctl.Value = (DateTime)this.Value;
        }
    }

    public override Type EditType
    {
        get
        {
            // Return the type of the editing control that CalendarCell uses.
            return typeof(CalendarEditingControl);
        }
    }

    public override Type ValueType
    {
        get
        {
            // Return the type of the value that CalendarCell contains.
            
            return typeof(DateTime);
        }
    }

    public override object DefaultNewRowValue
    {
        get
        {
            // Use the current date and time as the default value.
            return DateTime.Now;
        }
    }
}
Public Class CalendarCell
    Inherits DataGridViewTextBoxCell

    Public Sub New()
        ' Use the short date format.
        Me.Style.Format = "d"
    End Sub

    Public Overrides Sub InitializeEditingControl(ByVal rowIndex As Integer, _
        ByVal initialFormattedValue As Object, _
        ByVal dataGridViewCellStyle As DataGridViewCellStyle)

        ' Set the value of the editing control to the current cell value.
        MyBase.InitializeEditingControl(rowIndex, initialFormattedValue, _
            dataGridViewCellStyle)

        Dim ctl As CalendarEditingControl = _
            CType(DataGridView.EditingControl, CalendarEditingControl)

        ' Use the default row value when Value property is null.
        If (Me.Value Is Nothing) Then
            ctl.Value = CType(Me.DefaultNewRowValue, DateTime)
        Else
            ctl.Value = CType(Me.Value, DateTime)
        End If
    End Sub

    Public Overrides ReadOnly Property EditType() As Type
        Get
            ' Return the type of the editing control that CalendarCell uses.
            Return GetType(CalendarEditingControl)
        End Get
    End Property

    Public Overrides ReadOnly Property ValueType() As Type
        Get
            ' Return the type of the value that CalendarCell contains.
            Return GetType(DateTime)
        End Get
    End Property

    Public Overrides ReadOnly Property DefaultNewRowValue() As Object
        Get
            ' Use the current date and time as the default value.
            Return DateTime.Now
        End Get
    End Property

End Class

Hinweise

Als Optimierungsmethode verwenden in der Regel alle Zellen desselben Typs und in derselben DataGridView ein einziges gehostetes Bearbeitungssteuerelement. Bevor das Steuerelement jedoch von einer Zelle verwendet wird, muss es von der InitializeEditingControl -Methode initialisiert werden. Beim ersten Aufruf fügt diese Methode das Steuerelement der Liste der Bearbeitungssteuerelemente im übergeordneten DataGridViewElement hinzu. Außerdem werden einige visuelle Eigenschaften der Zelle initialisiert. Legt beispielsweise die Hintergrundfarbe des Bearbeitungsbereichs so fest, InitializeEditingControl dass sie dem angegebenen Zellformatparameter entspricht. Nachfolgende Aufrufe, nichts zu InitializeEditingControl tun.

Abgeleitete Klassen verwenden diese Methode, um eine Instanz der Klasse zu hosten, die Control ihrem Typ entspricht. Beispielsweise ruft eine Tabelle, die mindestens ein DataGridViewTextBoxCell -Objekt enthält, diese Methode auf, um dem Besitzer DataGridViewein einzelnes TextBox Bearbeitungssteuerelement hinzuzufügen.

Gilt für:

Weitere Informationen