'Declaration
Public Sub RegisterDragSource( _ ByVal source As UIElement, _ ByVal effect As DragDropEffect, _ ByVal keys As ModifierKeys, _ Optional ByVal handledEventsToo As Boolean _ )
'Usage
Dim instance As C1DragDropManager Dim source As UIElement Dim effect As DragDropEffect Dim keys As ModifierKeys Dim handledEventsToo As Boolean instance.RegisterDragSource(source, effect, keys, handledEventsToo)
public void RegisterDragSource( UIElement source, DragDropEffect effect, ModifierKeys keys, bool handledEventsToo )
public: void RegisterDragSource( UIElement^ source, DragDropEffect effect, ModifierKeys keys, bool handledEventsToo )
Parameters
- source
- System.Windows.UIElement that will act as a drag source.
- effect
- DragDropEffect that will be supported by the source object.
- keys
- System.Windows.Input.ModifierKeys that should be pressed in order for the drag operation to start.
- handledEventsToo