<?xml version="1.0"?>
<doc>
    <assembly>
        <name>GongSolutions.WPF.DragDrop</name>
    </assembly>
    <members>
        <member name="T:GongSolutions.Wpf.DragDrop.DefaultDragHandler">
            <summary>
            The default drag handler for GongSolutions.Wpf.DragDrop.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
            <summary>
            Queries whether a drag can be started.
            </summary>
            <param name="dragInfo">Information about the drag.</param>
            <remarks>
            To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects" /> property on <paramref name="dragInfo" />
            should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None" />.
            </remarks>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.CanStartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
            <summary>
            Determines whether this instance [can start drag] the specified drag information.
            </summary>
            <param name="dragInfo">The drag information.</param>
            <returns></returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Notifies the drag handler that a drop has occurred.
            </summary>
            <param name="dropInfo">Information about the drop.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.DragCancelled">
            <summary>
            Notifies the drag handler that a drag has been aborted.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDragHandler.TryCatchOccurredException(System.Exception)">
            <summary>
            Notifies that an exception has occurred upon dragging.
            </summary>
            <param name="exception">The exception that occurrred.</param>
            <returns>
            Boolean indicating whether the exception is handled in the drag handler.
            False will rethrow the exception.
            </returns>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.DefaultDropHandler">
            <summary>
            A default insertion drop handler for the most common usages
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.ShouldCopyData(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Determines whether the data of the drag drop action should be copied otherwise moved.
            </summary>
            <param name="dropInfo">The DropInfo with a valid DragInfo.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Updates the current drag state.
            </summary>
            <param name="dropInfo">Information about the drag.</param>
            <remarks>
            To allow a drop at the current drag position, the <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects" /> property on
            <paramref name="dropInfo" /> should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None" />
            and <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Data" /> should be set to a non-null value.
            </remarks>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Performs a drop.
            </summary>
            <param name="dropInfo">Information about the drop.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DefaultDropHandler.CanAcceptData(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Test the specified drop information for the right data.
            </summary>
            <param name="dropInfo">The drop information.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.TryGetDragHandler(GongSolutions.Wpf.DragDrop.DragInfo,System.Windows.UIElement)">
            <summary>
            Gets the drag handler from the drag info or from the sender, if the drag info is null
            </summary>
            <param name="dragInfo">the drag info object</param>
            <param name="sender">the sender from an event, e.g. mouse down, mouse move</param>
            <returns></returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.TryGetDropHandler(GongSolutions.Wpf.DragDrop.DropInfo,System.Windows.UIElement)">
            <summary>
            Gets the drop handler from the drop info or from the sender, if the drop info is null
            </summary>
            <param name="dropInfo">the drop info object</param>
            <param name="sender">the sender from an event, e.g. drag over</param>
            <returns></returns>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.IsDragSourceProperty">
            <summary>
            Gets or Sets whether the control can be used as drag source.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetIsDragSource(System.Windows.UIElement)">
            <summary>
            Gets whether the control can be used as drag source.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetIsDragSource(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether the control can be used as drag source.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.IsDropTargetProperty">
            <summary>
            Gets or Sets whether the control can be used as drop target.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetIsDropTarget(System.Windows.UIElement)">
            <summary>
            Gets whether the control can be used as drop target.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetIsDropTarget(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether the control can be used as drop target.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.CanDragWithMouseRightButtonProperty">
            <summary>
            Gets or Sets whether the control can be used as drag source together with the right mouse.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetCanDragWithMouseRightButton(System.Windows.UIElement)">
            <summary>
            Gets whether the control can be used as drag source together with the right mouse.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetCanDragWithMouseRightButton(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether the control can be used as drag source together with the right mouse.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDragHandler">
            <summary>
            Gets the default DragHandler.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDropHandler">
            <summary>
            Gets the default DropHandler.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragHandlerProperty">
            <summary>
            Gets or Sets the handler for the drag action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragHandler(System.Windows.UIElement)">
            <summary>
            Gets the handler for the drag action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragHandler(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.IDragSource)">
            <summary>
            Sets the handler for the drag action.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropHandlerProperty">
            <summary>
            Gets or Sets the handler for the drop action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropHandler(System.Windows.UIElement)">
            <summary>
            Gets the handler for the drop action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropHandler(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.IDropTarget)">
            <summary>
            Sets the handler for the drop action.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropScrollingModeProperty">
            <summary>
            Gets or Sets the ScrollingMode for the drop action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropScrollingMode(System.Windows.UIElement)">
            <summary>
            Gets the ScrollingMode for the drop action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropScrollingMode(System.Windows.UIElement,GongSolutions.Wpf.DragDrop.ScrollingMode)">
            <summary>
            Sets the ScrollingMode for the drop action.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DropTargetAdornerBrushProperty">
            <summary>
            Gets or Sets the brush for the DropTargetAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDropTargetAdornerBrush(System.Windows.UIElement)">
            <summary>
            Gets the brush for the DropTargetAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDropTargetAdornerBrush(System.Windows.UIElement,System.Windows.Media.Brush)">
            <summary>
            Sets the brush for the DropTargetAdorner.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropContextProperty">
            <summary>
            Gets or Sets a context for a control. Only controls with the same context are allowed for drag or drop actions.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDropContext(System.Windows.UIElement)">
            <summary>
            Gets a context for a control. Only controls with the same context are allowed for drag or drop actions.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDropContext(System.Windows.UIElement,System.String)">
            <summary>
            Sets a context for a control. Only controls with the same context are allowed for drag or drop actions.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragSourceIgnoreProperty">
            <summary>
            Gets or Sets whether an element under the mouse should be ignored for the drag action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragSourceIgnore(System.Windows.UIElement)">
            <summary>
            Gets whether an element under the mouse should be ignored for the drag action.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragSourceIgnore(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether an element under the mouse should be ignored for the drag action.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDirectlySelectedOnlyProperty">
            <summary>
            Gets or Sets wheter the drag action should be started only directly on a selected item
            or also on the free control space (e.g. in a ListBox).
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDirectlySelectedOnly(System.Windows.DependencyObject)">
            <summary>
            Gets wheter the drag action should be started only directly on a selected item.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDirectlySelectedOnly(System.Windows.DependencyObject,System.Boolean)">
            <summary>
            Sets wheter the drag action should be started only directly on a selected item.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropCopyKeyStateProperty">
            <summary>
            The drag drop copy key state property (default None).
            So the drag drop action is
            - Move, within the same control or from one to another, if the drag drop key state is None
            - Copy, from one to another control with the given drag drop copy key state
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragDropCopyKeyState(System.Windows.UIElement)">
            <summary>
            Gets the copy key state which indicates the effect of the drag drop operation.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragDropCopyKeyState(System.Windows.UIElement,System.Windows.DragDropKeyStates)">
            <summary>
            Sets the copy key state which indicates the effect of the drag drop operation.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseDefaultDragAdornerProperty">
            <summary>
            Gets or Sets whether if the default DragAdorner should be use.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseDefaultDragAdorner(System.Windows.UIElement)">
            <summary>
            Gets whether if the default DragAdorner is used.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseDefaultDragAdorner(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether if the default DragAdorner should be use.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DefaultDragAdornerOpacityProperty">
            <summary>
            Gets or Sets the opacity of the default DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDefaultDragAdornerOpacity(System.Windows.UIElement)">
            <summary>
            Gets the opacity of the default DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDefaultDragAdornerOpacity(System.Windows.UIElement,System.Double)">
            <summary>
            Sets the opacity of the default DragAdorner.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragMouseAnchorPointProperty">
            <summary>
            Gets or Sets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragMouseAnchorPoint(System.Windows.UIElement)">
            <summary>
            Gets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragMouseAnchorPoint(System.Windows.UIElement,System.Windows.Point)">
            <summary>
            Sets the horizontal and vertical proportion at which the pointer will anchor on the DragAdorner.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragAdornerTemplateProperty">
            <summary>
            Gets or Sets a DataTemplate for the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets the DataTemplate for the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets the DataTemplate for the DragAdorner.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.DragAdornerTemplateSelectorProperty">
            <summary>
            Gets or Sets a DataTemplateSelector for the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetDragAdornerTemplateSelector(System.Windows.DependencyObject,System.Windows.Controls.DataTemplateSelector)">
            <summary>
            Gets the DataTemplateSelector for the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetDragAdornerTemplateSelector(System.Windows.DependencyObject)">
            <summary>
            Gets the DataTemplateSelector for the DragAdorner.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseVisualSourceItemSizeForDragAdornerProperty">
            <summary>
            Use descendant bounds of the VisualSourceItem as MinWidth for the DragAdorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseVisualSourceItemSizeForDragAdorner(System.Windows.UIElement)">
            <summary>
            Get the flag which indicates if the DragAdorner use the descendant bounds of the VisualSourceItem as MinWidth.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseVisualSourceItemSizeForDragAdorner(System.Windows.UIElement,System.Boolean)">
            <summary>
            Set the flag which indicates if the DragAdorner use the descendant bounds of the VisualSourceItem as MinWidth.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.UseDefaultEffectDataTemplateProperty">
            <summary>
            Gets or Sets whether if the default DataTemplate for the effects should be use.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetUseDefaultEffectDataTemplate(System.Windows.UIElement)">
            <summary>
            Gets whether if the default DataTemplate for the effects should be use.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetUseDefaultEffectDataTemplate(System.Windows.UIElement,System.Boolean)">
            <summary>
            Sets whether if the default DataTemplate for the effects should be use.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectNoneAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type None.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectNoneAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type None.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectNoneAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type None.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectCopyAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type Copy.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectCopyAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type Copy.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectCopyAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type Copy.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectMoveAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type Move.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectMoveAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type Move.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectMoveAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type Move.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectLinkAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type Link.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectLinkAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type Link.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectLinkAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type Link.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectAllAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type All.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectAllAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type All.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectAllAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type All.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.EffectScrollAdornerTemplateProperty">
            <summary>
            Gets or Sets a EffectAdorner DataTemplate for effect type Scroll.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetEffectScrollAdornerTemplate(System.Windows.UIElement)">
            <summary>
            Gets a EffectAdorner DataTemplate for effect type Scroll.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetEffectScrollAdornerTemplate(System.Windows.UIElement,System.Windows.DataTemplate)">
            <summary>
            Sets a EffectAdorner DataTemplate for effect type Scroll.
            </summary>
        </member>
        <member name="F:GongSolutions.Wpf.DragDrop.DragDrop.ItemsPanelOrientationProperty">
            <summary>
            Gets or Sets the Orientation which should be used for the drag drop action (default null).
            Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
            but sometimes it's necessary to force the oreintation, if the look up is wrong.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.GetItemsPanelOrientation(System.Windows.UIElement)">
            <summary>
            Gets the Orientation which should be used for the drag drop action (default null).
            Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
            but sometimes it's necessary to force the oreintation, if the look up is wrong.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragDrop.SetItemsPanelOrientation(System.Windows.UIElement,System.Nullable{System.Windows.Controls.Orientation})">
            <summary>
            Sets the Orientation which should be used for the drag drop action (default null).
            Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
            but sometimes it's necessary to force the oreintation, if the look up is wrong.
            </summary>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.DragInfo">
            <summary>
            Holds information about a the source of a drag drop operation.
            </summary>
            
            <remarks>
            The <see cref="T:GongSolutions.Wpf.DragDrop.DragInfo"/> class holds all of the framework's information about the source
            of a drag. It is used by <see cref="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)"/> to determine whether a drag 
            can start, and what the dragged data should be.
            </remarks>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DragInfo.#ctor(System.Object,System.Windows.Input.MouseButtonEventArgs)">
            <summary>
            Initializes a new instance of the DragInfo class.
            </summary>
            
            <param name="sender">
            The sender of the mouse event that initiated the drag.
            </param>
            
            <param name="e">
            The mouse event that initiated the drag.
            </param>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.Data">
            <summary>
            Gets or sets the drag data.
            </summary>
            
            <remarks>
            This must be set by a drag handler in order for a drag to start.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DragStartPosition">
            <summary>
            Gets the position of the click that initiated the drag, relative to <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource"/>.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.PositionInDraggedItem">
            <summary>
            Gets the point where the cursor was relative to the item being dragged when the drag was started.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects">
            <summary>
            Gets or sets the allowed effects for the drag.
            </summary>
            
            <remarks>
            This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drag handler in order 
            for a drag to start.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.MouseButton">
            <summary>
            Gets the mouse button that initiated the drag.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceCollection">
            <summary>
            Gets the collection that the source ItemsControl is bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceIndex">
            <summary>
            Gets the position from where the item was dragged.
            </summary>
            <value>The index of the source.</value>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceItem">
            <summary>
            Gets the object that a dragged item is bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceItems">
            <summary>
            Gets a collection of objects that the selected items in an ItemsControl are bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be empty.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.SourceGroup">
            <summary>
            Gets the group from a dragged item if the drag is currently from an ItemsControl with groups.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource">
            <summary>
            Gets the control that initiated the drag.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSourceItem">
            <summary>
            Gets the item in an ItemsControl that started the drag.
            </summary>
            
            <remarks>
            If the control that initiated the drag is an ItemsControl, this property will hold the item
            container of the clicked item. For example, if <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSource"/> is a ListBox this
            will hold a ListBoxItem.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.VisualSourceFlowDirection">
            <summary>
            Gets the FlowDirection of the current drag source.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DataObject">
            <summary>
            Gets the <see cref="T:System.Windows.IDataObject"/> which is used by the drag and drop operation. Set it to
            a custom instance if custom drag and drop behavior is needed.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DragInfo.DragDropCopyKeyState">
            <summary>
            Gets the drag drop copy key state indicating the effect of the drag drop operation.
            </summary>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.DropInfo">
            <summary>
            Holds information about a the target of a drag drop operation.
            </summary>
            
            <remarks>
            The <see cref="T:GongSolutions.Wpf.DragDrop.DropInfo"/> class holds all of the framework's information about the current 
            target of a drag. It is used by <see cref="M:GongSolutions.Wpf.DragDrop.IDropTarget.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)"/> method to determine whether 
            the current drop target is valid, and by <see cref="M:GongSolutions.Wpf.DragDrop.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)"/> to perform the drop.
            </remarks>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DropInfo.#ctor(System.Object,System.Windows.DragEventArgs,GongSolutions.Wpf.DragDrop.DragInfo)">
            <summary>
            Initializes a new instance of the DropInfo class.
            </summary>
            
            <param name="sender">
            The sender of the drag event.
            </param>
            
            <param name="e">
            The drag event.
            </param>
            
            <param name="dragInfo">
            Information about the source of the drag, if the drag came from within the framework.
            </param>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.Data">
            <summary>
            Gets the drag data.
            </summary>
            
            <remarks>
            If the drag came from within the framework, this will hold:
            
            - The dragged data if a single item was dragged.
            - A typed IEnumerable if multiple items were dragged.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DragInfo">
            <summary>
            Gets a <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.DragInfo"/> object holding information about the source of the drag, 
            if the drag came from within the framework.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DropPosition">
            <summary>
            Gets the mouse position relative to the VisualTarget
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DropTargetAdorner">
            <summary>
            Gets or sets the class of drop target to display.
            </summary>
            
            <remarks>
            The standard drop target adorner classes are held in the <see cref="T:GongSolutions.Wpf.DragDrop.DropTargetAdorners"/>
            class.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects">
            <summary>
            Gets or sets the allowed effects for the drop.
            </summary>
            
            <remarks>
            This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drop handler in order 
            for a drop to be possible.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.InsertIndex">
            <summary>
            Gets the current insert position within <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection"/>.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.UnfilteredInsertIndex">
            <summary>
            Gets the current insert position within the source (unfiltered) <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection"/>.
            </summary>
            <remarks>
            This should be only used in a Drop action.
            This works only correct with different objects (string, int, etc won't work correct).
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetCollection">
            <summary>
            Gets the collection that the target ItemsControl is bound to.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetItem">
            <summary>
            Gets the object that the current drop target is bound to.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetGroup">
            <summary>
            Gets the current group target.
            </summary>
            
            <remarks>
            If the drag is currently over an ItemsControl with groups, describes the group that
            the drag is currently over.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetScrollViewer">
            <summary>
            Gets the ScrollViewer control for the visual target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.TargetScrollingMode">
            <summary>
            Gets or Sets the ScrollingMode for the drop action.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTarget">
            <summary>
            Gets the control that is the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetItem">
            <summary>
            Gets the item in an ItemsControl that is the current drop target.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetOrientation">
            <summary>
            Gets the orientation of the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.VisualTargetFlowDirection">
            <summary>
            Gets the orientation of the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.DestinationText">
            <summary>
            Gets and sets the text displayed in the DropDropEffects adorner.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.InsertPosition">
            <summary>
            Gets the relative position the item will be inserted to compared to the TargetItem
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.KeyStates">
            <summary>
            Gets a flag enumeration indicating the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropInfo.IsSameDragDropContextAsSource">
            <summary>
            Gets a value indicating whether the target is in the same context as the source, <see cref="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropContextProperty" />.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorner.Pen">
            <summary>
            Gets or Sets the pen which can be used for the render process.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorners.Highlight">
            <summary>
            Gets the type of the default highlight target adorner.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.DropTargetAdorners.Insert">
            <summary>
            Gets the type of the default insert target adorner.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DropTargetHighlightAdorner.OnRender(System.Windows.Media.DrawingContext)">
            <summary>
            When overridden in a derived class, participates in rendering operations that are directed by the layout system.
            The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for
            later asynchronous use by layout and drawing.
            </summary>
            <param name="drawingContext">The drawing instructions for a specific element. This context is provided to the layout system.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.DropTargetInsertionAdorner.OnRender(System.Windows.Media.DrawingContext)">
            <summary>
            When overridden in a derived class, participates in rendering operations that are directed by the layout system.
            The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for
            later asynchronous use by layout and drawing.
            </summary>
            <param name="drawingContext">The drawing instructions for a specific element. This context is provided to the layout system.</param>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.Icons.IconFactory">
            <summary>
            Static class to provide access to standard application images
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectNone">
            <summary>
            Gets the icon which can be used for the effect type None.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectCopy">
            <summary>
            Gets the icon which can be used for the effect type Copy.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectMove">
            <summary>
            Gets the icon which can be used for the effect type Move.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.Icons.IconFactory.EffectLink">
            <summary>
            Gets the icon which can be used for the effect type Link.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Icons.IconFactory.GetImage(System.String,System.Int32)">
            <summary>
            Loads an image based on the name and size required.
            Images need to be marked as 'Resource' in the project for them be loaded.
            </summary>
            <param name="iconName">Name of the icon</param>
            <param name="size">The size of the icon</param>
            <returns>The image to be displayed</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Icons.IconFactory.CreateCursor(System.Double,System.Double,System.Windows.Media.SolidColorBrush,System.Windows.Media.Pen)">
            <summary>
            Creates a custom cursor.
            </summary>
            <param name="rx"></param>
            <param name="ry"></param>
            <param name="brush"></param>
            <param name="pen"></param>
            <returns></returns>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.Data">
            <summary>
            Gets or sets the drag data.
            </summary>
            
            <remarks>
            This must be set by a drag handler in order for a drag to start.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DragStartPosition">
            <summary>
            Gets the position of the click that initiated the drag, relative to <see cref="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource"/>.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.PositionInDraggedItem">
            <summary>
            Gets the point where the cursor was relative to the item being dragged when the drag was started.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.Effects">
            <summary>
            Gets or sets the allowed effects for the drag.
            </summary>
            
            <remarks>
            This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drag handler in order 
            for a drag to start.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.MouseButton">
            <summary>
            Gets the mouse button that initiated the drag.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceCollection">
            <summary>
            Gets the collection that the source ItemsControl is bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceIndex">
            <summary>
            Gets the position from where the item was dragged.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceItem">
            <summary>
            Gets the object that a dragged item is bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceItems">
            <summary>
            Gets a collection of objects that the selected items in an ItemsControl are bound to.
            </summary>
            
            <remarks>
            If the control that initated the drag is unbound or not an ItemsControl, this will be empty.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.SourceGroup">
            <summary>
            Gets the group from a dragged item if the drag is currently from an ItemsControl with groups.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource">
            <summary>
            Gets the control that initiated the drag.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSourceItem">
            <summary>
            Gets the item in an ItemsControl that started the drag.
            </summary>
            
            <remarks>
            If the control that initiated the drag is an ItemsControl, this property will hold the item
            container of the clicked item. For example, if <see cref="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSource"/> is a ListBox this
            will hold a ListBoxItem.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.VisualSourceFlowDirection">
            <summary>
            Gets the FlowDirection of the current drag source.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DataObject">
            <summary>
            Gets the <see cref="T:System.Windows.IDataObject"/> which is used by the drag and drop operation. Set it to
            a custom instance if custom drag and drop behavior is needed.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDragInfo.DragDropCopyKeyState">
            <summary>
            Gets the drag drop copy key state indicating the effect of the drag drop operation.
            </summary>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.IDragSource">
            <summary>
            Interface implemented by Drag Handlers.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">
            <summary>
            Queries whether a drag can be started.
            </summary>
            
            <param name="dragInfo">
            Information about the drag.
            </param>
            
            <remarks>
            To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects"/> property on <paramref name="dragInfo"/> 
            should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/>. 
            </remarks>
        </member>
        <!-- Ungültiger XML-Kommentar wurde für den Member "M:GongSolutions.Wpf.DragDrop.IDragSource.CanStartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)" ignoriert -->
        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Notifies the drag handler that a drop has occurred.
            </summary>
            
            <param name="dropInfo">
              Information about the drop.
            </param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.DragCancelled">
            <summary>
            Notifies the drag handler that a drag has been aborted.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.TryCatchOccurredException(System.Exception)">
            <summary>
            Notifies that an exception has occurred upon dragging.
            </summary>
            <param name="exception">
            The exception that occurrred.
            </param>
            <returns>
            Boolean indicating whether the exception is handled in the drag handler.
            False will rethrow the exception.
            </returns>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.Data">
            <summary>
            Gets the drag data.
            </summary>
            
            <remarks>
            If the drag came from within the framework, this will hold:
            
            - The dragged data if a single item was dragged.
            - A typed IEnumerable if multiple items were dragged.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.DragInfo">
            <summary>
            Gets a <see cref="P:GongSolutions.Wpf.DragDrop.IDropInfo.DragInfo"/> object holding information about the source of the drag, 
            if the drag came from within the framework.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.DropPosition">
            <summary>
            Gets the mouse position relative to the VisualTarget
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.DropTargetAdorner">
            <summary>
            Gets or sets the class of drop target to display.
            </summary>
            
            <remarks>
            The standard drop target adorner classes are held in the <see cref="T:GongSolutions.Wpf.DragDrop.DropTargetAdorners"/>
            class.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.Effects">
            <summary>
            Gets or sets the allowed effects for the drop.
            </summary>
            
            <remarks>
            This must be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/> by a drop handler in order 
            for a drop to be possible.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.InsertIndex">
            <summary>
            Gets the current insert position within <see cref="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetCollection"/>.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.UnfilteredInsertIndex">
            <summary>
            Gets the current insert position within the source (unfiltered) <see cref="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetCollection"/>.
            </summary>
            <remarks>
            This should be only used in a Drop action.
            This works only correct with different objects (string, int, etc won't work correct).
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetCollection">
            <summary>
            Gets the collection that the target ItemsControl is bound to.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetItem">
            <summary>
            Gets the object that the current drop target is bound to.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.TargetGroup">
            <summary>
            Gets the current group target.
            </summary>
            
            <remarks>
            If the drag is currently over an ItemsControl with groups, describes the group that
            the drag is currently over.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.VisualTarget">
            <summary>
            Gets the control that is the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.VisualTargetItem">
            <summary>
            Gets the item in an ItemsControl that is the current drop target.
            </summary>
            
            <remarks>
            If the current drop target is unbound or not an ItemsControl, this will be null.
            </remarks>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.VisualTargetOrientation">
            <summary>
            Gets the orientation of the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.VisualTargetFlowDirection">
            <summary>
            Gets the FlowDirection of the current drop target.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.DestinationText">
            <summary>
            Gets and sets the text displayed in the DropDropEffects adorner.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.InsertPosition">
            <summary>
            Gets the relative position the item will be inserted to compared to the TargetItem
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.KeyStates">
            <summary>
            Gets a flag enumeration indicating the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.NotHandled">
            <summary>
            Indicates if the drop info should be handled by itself (useful for child elements)
            </summary>
        </member>
        <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.IsSameDragDropContextAsSource">
            <summary>
            Gets a value indicating whether the target is in the same context as the source, <see cref="F:GongSolutions.Wpf.DragDrop.DragDrop.DragDropContextProperty" />.
            </summary>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.IDropTarget">
            <summary>
            Interface implemented by Drop Handlers.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Updates the current drag state.
            </summary>
            
            <param name="dropInfo">
              Information about the drag.
            </param>
            
            <remarks>
            To allow a drop at the current drag position, the <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects"/> property on 
            <paramref name="dropInfo"/> should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/>
            and <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Data"/> should be set to a non-null value.
            </remarks>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">
            <summary>
            Performs a drop.
            </summary>
            
            <param name="dropInfo">
              Information about the drop.
            </param>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.ScrollingMode">
            <summary>
            Specifies how <see cref="T:System.Windows.Controls.ScrollViewer" /> reacts to drop operation.
            </summary>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.Utilities.DpiHelper">
            <summary>
            A helper class for Dpi logicm cause Microsoft hides this with the internal flag.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.DpiHelper.LogicalPixelsToDevice(System.Windows.Point)">
            <summary>
            Convert a point in device independent pixels (1/96") to a point in the system coordinates.
            </summary>
            <param name="logicalPoint">A point in the logical coordinate system.</param>
            <returns>Returns the point converted to the system's coordinates.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.DpiHelper.DevicePixelsToLogical(System.Windows.Point)">
            <summary>
            Convert a point in system coordinates to a point in device independent pixels (1/96").
            </summary>
            <param name="devicePoint">A point in the physical coordinate system.</param>
            <returns>Returns the point converted to the device independent coordinate system.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.DragDropExtensions.IsDragSourceIgnored(System.Windows.UIElement)">
            <summary>
            Determines whether the given element is ignored on drag start (<see cref="!:DragDrop.DragSourceIgnore"/>).
            </summary>
            <param name="element">The given element.</param>
            <returns>Element is ignored or not.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.DragDropExtensions.IsDragSource(System.Windows.UIElement)">
            <summary>
            Determines whether the given element is ignored on drop action (<see cref="!:DragDrop.IsDragSource"/>).
            </summary>
            <param name="element">The given element.</param>
            <returns>Element is ignored or not.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.DragDropExtensions.IsDropTarget(System.Windows.UIElement)">
            <summary>
            Determines whether the given element is ignored on drop action (<see cref="!:DragDrop.IsDropTarget"/>).
            </summary>
            <param name="element">The given element.</param>
            <returns>Element is ignored or not.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.HitTestUtilities.IsNotPartOfSender(System.Object,System.Windows.Input.MouseButtonEventArgs)">
            <summary>
            thx to @osicka from issue #84
            
            e.g. original source is part of a popup (e.g. ComboBox drop down), the hit test needs to be done on the original source.
            Because the popup is not attached to the visual tree of the sender.
            This function test this by looping back from the original source to the sender and if it didn't end up at the sender stopped the drag.
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.ItemsControlExtensions.GetItemsPanelOrientation(System.Windows.Controls.ItemsControl)">
            <summary>
            Gets the Orientation which will be used for the drag drop action.
            Normally it will be look up to find the correct orientaion of the inner ItemsPanel,
            but sometimes it's necessary to force the oreintation, if the look up is wrong.
            If so, the ItemsPanelOrientation value is taken.
            </summary>
            <param name="itemsControl">The ItemsControl for the look up.</param>
            <returns>Orientation for the given ItemsControl.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.ItemsControlExtensions.GetItemsPanelFlowDirection(System.Windows.Controls.ItemsControl)">
            <summary>
            Gets the FlowDirection which will be used for the drag drop action.
            </summary>
            <param name="itemsControl">The ItemsControl for the look up.</param>
            <returns>FlowDirection for the given ItemsControl.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.ItemsControlExtensions.SetSelectedItem(System.Windows.Controls.ItemsControl,System.Object)">
            <summary>
            Sets the given object as selected item at the ItemsControl.
            </summary>
            <param name="itemsControl">The ItemsControl which contains the item.</param>
            <param name="item">The object which should be selected.</param>
        </member>
        <member name="T:GongSolutions.Wpf.DragDrop.Utilities.TreeViewItemExtensions">
            <summary>
            Extension methods for TreeViewItem
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.TreeViewItemExtensions.GetHeaderSize(System.Windows.Controls.TreeViewItem)">
            <summary>
            Try get the height of the header part for the given TreeViewItem.
            If there is no PART_Header it will return Size.Empty.
            </summary>
            <param name="item">The TreeViewItem.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.TreeViewItemExtensions.GetHeaderControl(System.Windows.Controls.TreeViewItem)">
            <summary>
            Try get the header part of the given TreeViewItem.
            If there is no PART_Header it will return null.
            </summary>
            <param name="item">The TreeViewItem.</param>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.TypeUtilities.TryGetList(System.Collections.IEnumerable)">
            <summary>
            Gets the enumerable as list.
            If enumerable is an ICollectionView then it returns the SourceCollection as list.
            </summary>
            <param name="enumerable">The enumerable.</param>
            <returns>Returns a list.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.VisualTreeExtensions.TryGetNextAncestorDropTargetElement(System.Windows.UIElement)">
            <summary>
            Gets the next ancestor element which is a drop target.
            </summary>
            <param name="element">The start element.</param>
            <returns>The first element which is a drop target.</returns>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.VisualTreeExtensions.GetVisualAncestor(System.Windows.DependencyObject,System.Type,System.Type)">
            <summary>
            find the visual ancestor item by type
            </summary>
        </member>
        <member name="M:GongSolutions.Wpf.DragDrop.Utilities.VisualTreeExtensions.GetVisualAncestor(System.Windows.DependencyObject,System.Type,System.Windows.Controls.ItemsControl)">
            <summary>
            find the visual ancestor by type and go through the visual tree until the given itemsControl will be found
            </summary>
        </member>
    </members>
</doc>
