ComponentOne DockControl for WPF
C1.WPF.Docking Namespace / C1DockControl Class / ItemDockModeChanged Event

In This Topic
    ItemDockModeChanged Event (C1DockControl)
    In This Topic
    Fires when the DockMode of a descendant C1DockTabControl changes.
    Syntax
    'Declaration
     
    Public Event ItemDockModeChanged As EventHandler(Of ItemDockModeChangedEventArgs)
    public event 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 System.Windows.Controls.ItemsControl that is transitioning modes.  
    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