DataGridTextBoxColumn.EndEdit Yöntem

Tanım

üzerinde düzenleme işlemini sonlandırır DataGridColumnStyle.

protected:
 void EndEdit();
protected void EndEdit ();
member this.EndEdit : unit -> unit
Protected Sub EndEdit ()

Örnekler

Aşağıdaki örnek, bir sütunun EndEdit değerini düzenlemeden önce yöntemini çağırır.

Private Sub EditGrid()
    ' Get the current DataGridColumnStyle through the CurrentCell.
    Dim dgCol As DataGridColumnStyle
    Dim colNum As Integer
    Dim rowNum As Integer
    Dim dataTable1 As DataTable
    
    With dataGrid1.CurrentCell
        colNum = .ColumnNumber
        rowNum = .RowNumber    
    End With
    dgCol = dataGrid1.TableStyles(0).GridColumnStyles(ColNum)
    ' Invoke the BeginEdit method.
     
    If dataGrid1.BeginEdit(dgCol, rowNum) Then
        ' Edit row value.
        dataTable1 = dataSet1.Tables(dataGrid1.DataMember)
        Dim myRow As DataRow
        myRow = dataTable1.Rows(rowNum)
        myRow.BeginEdit
        myRow(colNum) = edit1.Text
        myRow.AcceptChanges
        dataTable1.AcceptChanges
        Console.WriteLine("Edited?")
        dataGrid1.EndEdit(dgcol, rowNum, False)
    Else
        Console.WriteLine("BeginEdit failed.")
    End If
End Sub

Açıklamalar

Hücrenin değerini düzenlemek için, değeri değiştirmeden önce nesnesini BeginEdit çağırınDataRow. Değişiklik işlenmeden önce hem ve DataTable nesnelerinde DataRow yöntemini çağırmanız AcceptChanges gerekir.

Şunlara uygulanır