DataGrid.OnLoadingRowDetails(DataGridRowDetailsEventArgs) Method

Definition

Raises the LoadingRowDetails event.

protected:
 virtual void OnLoadingRowDetails(System::Windows::Controls::DataGridRowDetailsEventArgs ^ e);
protected virtual void OnLoadingRowDetails (System.Windows.Controls.DataGridRowDetailsEventArgs e);
abstract member OnLoadingRowDetails : System.Windows.Controls.DataGridRowDetailsEventArgs -> unit
override this.OnLoadingRowDetails : System.Windows.Controls.DataGridRowDetailsEventArgs -> unit
Protected Overridable Sub OnLoadingRowDetails (e As DataGridRowDetailsEventArgs)

Parameters

e
DataGridRowDetailsEventArgs

The data for the event.

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnLoadingRowDetails method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnLoadingRowDetails(DataGridRowDetailsEventArgs) in a derived class, be sure to call the base class' OnLoadingRowDetails(DataGridRowDetailsEventArgs) method so that registered delegates receive the event.

Applies to