ComponentOne DockControl for WPF and Silverlight
SlidingClosed Event

C1.WPF.Docking Namespace > C1DockControl Class : SlidingClosed Event
Fires when a C1DockTabItem finished closing or was substituted for another C1DockTabItem.
Syntax
'Declaration
 
Public Event SlidingClosed As System.EventHandler(Of SlidingEventArgs)
public event System.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