ComponentFactory.Krypton.Docking.KryptonDockingFloatingWindow.PropogateDragTargets C# (CSharp) Method

PropogateDragTargets() public method

Propogates a request for drag targets down the hierarchy of docking elements.
public PropogateDragTargets ( KryptonFloatingWindow floatingWindow, PageDragEndData dragData, DragTargetList targets ) : void
floatingWindow KryptonFloatingWindow Reference to window being dragged.
dragData ComponentFactory.Krypton.Navigator.PageDragEndData Set of pages being dragged.
targets DragTargetList Collection of drag targets.
return void
        public override void PropogateDragTargets(KryptonFloatingWindow floatingWindow,
                                                  PageDragEndData dragData,
                                                  DragTargetList targets)
        {
            // Can only generate targets for a floating window that is actually visible and not the one being dragged
            if (FloatingWindow.Visible && (floatingWindow != FloatingWindow))
                base.PropogateDragTargets(floatingWindow, dragData, targets);
        }