DataGrid.OnColumnReordered(DataGridColumnEventArgs) Method

Definition

Raises the ColumnReordered event.

protected public:
 virtual void OnColumnReordered(System::Windows::Controls::DataGridColumnEventArgs ^ e);
protected internal virtual void OnColumnReordered (System.Windows.Controls.DataGridColumnEventArgs e);
abstract member OnColumnReordered : System.Windows.Controls.DataGridColumnEventArgs -> unit
override this.OnColumnReordered : System.Windows.Controls.DataGridColumnEventArgs -> unit
Protected Friend Overridable Sub OnColumnReordered (e As DataGridColumnEventArgs)

Parameters

e
DataGridColumnEventArgs

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 OnColumnReordered 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 OnColumnReordered(DataGridColumnEventArgs) in a derived class, be sure to call the base class' OnColumnReordered(DataGridColumnEventArgs) method so that registered delegates receive the event.

Applies to