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

In This Topic
    SlidingClosed Event (C1DockControl)
    In This Topic
    Fires when a C1DockTabItem finished closing or was substituted for another C1DockTabItem.
    Syntax
    'Declaration
     
    Public Event SlidingClosed As EventHandler(Of SlidingEventArgs)
    public event EventHandler<SlidingEventArgs> SlidingClosed
    Event Data

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

    PropertyDescription
    Gets the C1DockTabItem that is sliding.  
    Remarks
    The SlidingClosed event for the old C1DockTabItem fires before SlidingOpening fires for the new one.
    See Also