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

In This Topic
    PickerLoading Event (C1DockControl)
    In This Topic
    Allows you to customize which target directions are possible when docking a C1DockTabControl.
    Syntax
    'Declaration
     
    Public Event PickerLoading As EventHandler(Of PickerLoadingEventArgs)
    public event 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