Sdílet prostřednictvím


DataRowChangeEventArgs(DataRow, DataRowAction) Konstruktor

Definice

Inicializuje novou instanci DataRowChangeEventArgs třídy.

public:
 DataRowChangeEventArgs(System::Data::DataRow ^ row, System::Data::DataRowAction action);
public DataRowChangeEventArgs (System.Data.DataRow row, System.Data.DataRowAction action);
new System.Data.DataRowChangeEventArgs : System.Data.DataRow * System.Data.DataRowAction -> System.Data.DataRowChangeEventArgs
Public Sub New (row As DataRow, action As DataRowAction)

Parametry

row
DataRow

Hodnota DataRow , na které k akci dochází.

action
DataRowAction

Jedna z DataRowAction hodnot.

Příklady

Následující příklad přidá proceduru DataRowChangeEventHandler a pro zpracování události při změně řádku.


Private dataTable As DataTable

Private Sub [AddHandler]()
   dataTable = CType(DataGrid1.DataSource, DataTable)
   AddHandler dataTable.RowChanged, AddressOf Me.dataTable_Changed
End Sub

Private Sub dataTable_Changed _
(ByVal sender As System.Object, ByVal e As System.Data.DataRowChangeEventArgs)
   Console.WriteLine("Row Changed", e.Action, e.Row.Item(DataGrid1.CurrentCell.ColumnNumber))
End Sub

Platí pro

Viz také