ComponentOne DockControl for WPF and Silverlight
PickerLoading Event

C1.WPF.Docking Namespace > C1DockControl Class : PickerLoading Event
Allows you to customize which target directions are possible when docking a C1DockTabControl.
Syntax
'Declaration
 
Public Event PickerLoading As System.EventHandler(Of PickerLoadingEventArgs)
public event System.EventHandler<PickerLoadingEventArgs> PickerLoading
Event Data

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

PropertyDescription
Gets or sets a value that determines whether the bottom C1DockPickerPart for the target C1DockTabControl is visible.  
Gets or sets a value that determines whether the bottom C1DockPickerPart for the whole C1DockControl is visible.  
Gets or sets a value that determines whether the left C1DockPickerPart for the target C1DockTabControl is visible.  
Gets or sets a value that determines whether the left C1DockPickerPart for the whole C1DockControl is visible.  
Gets or sets a value that determines whether the center C1DockPickerPart for the target C1DockTabControl is visible.  
Gets or sets a value that determines whether the right C1DockPickerPart for the target C1DockTabControl is visible.  
Gets or sets a value that determines whether the right C1DockPickerPart for the whole C1DockControl is visible.  
Gets or sets a value that determines whether the top C1DockPickerPart for the target C1DockTabControl is visible.  
Gets or sets a value that determines whether the top C1DockPickerPart for the whole C1DockControl is visible.  
Gets the C1DockTabControl or C1DockTabItem that is being dragged.  
Gets the C1DockTabControl below the mouse.  
See Also