ComponentOne DockControl for WPF and Silverlight
ItemDockModeChanged Event

C1.WPF.Docking Namespace > C1DockControl Class : ItemDockModeChanged Event
Fires when the DockMode of a descendant C1DockTabControl changes.
Syntax
'Declaration
 
Public Event ItemDockModeChanged As System.EventHandler(Of ItemDockModeChangedEventArgs)
public event System.EventHandler<ItemDockModeChangedEventArgs> ItemDockModeChanged
Event Data

The event handler receives an argument of type ItemDockModeChangedEventArgs containing data related to this event. The following ItemDockModeChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the mode the C1DockTabControl is transitioning to.  
Gets the mode the C1DockTabControl is transitioning from.  
Gets the C1DockTabControl that is transitioning modes.  
See Also