DevZest WPF Docking
DockControlOnDockItemStateChanged Method |
Raises the DockItemStateChanged event.
Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
protected virtual void OnDockItemStateChanged( DockItemStateEventArgs e )
Protected Overridable Sub OnDockItemStateChanged ( e As DockItemStateEventArgs )
Parameters
- e
- Type: DevZest.Windows.DockingDockItemStateEventArgs
A DockItemStateEventArgs that contains the event data.
Remarks
This method allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding in a derived class, be sure to call the base class's method so that registered delegates receive the event.
See Also