Show / Hide Table of Contents

Class UserManagementDragDropManager

Class that manages the User Management module DragDrop operations.

Inheritance
System.Object
UserManagementDragDropManager
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.Users
Assembly: Phoenix.Plugin.Users.dll
Syntax
public class UserManagementDragDropManager

Methods

View Source

Add(FrameworkElement, FrameworkElement, EventHandler<DragDropEventArgs>, Func<Object>, Type[])

Adds a Drag/Drop event.

Declaration
public void Add(FrameworkElement origin, FrameworkElement destination, EventHandler<DragDropEventArgs> dragDropEventHandler, Func<object> eventArgs, params Type[] ignoreTypes)
Parameters
Type Name Description
System.Windows.FrameworkElement origin

The origin of the drag operation.

System.Windows.FrameworkElement destination

The destination drop zone.

System.EventHandler<DragDropEventArgs> dragDropEventHandler

The event to run when drag/drop is complete.

System.Func<System.Object> eventArgs

The event arguments associated with the drag/drop operations.

System.Type[] ignoreTypes

Ignores the control types when trying to drag so that the user can still interact with the controls without entering a drag/drop operation.

View Source

Add(FrameworkElement, FrameworkElement, EventHandler<DragDropEventArgs>, Object, Type[])

Adds a Drag/Drop event.

Declaration
public void Add(FrameworkElement origin, FrameworkElement destination, EventHandler<DragDropEventArgs> dragDropEventHandler, object eventArgs, params Type[] ignoreTypes)
Parameters
Type Name Description
System.Windows.FrameworkElement origin

The origin of the drag operation.

System.Windows.FrameworkElement destination

The destination drop zone.

System.EventHandler<DragDropEventArgs> dragDropEventHandler

The event to run when drag/drop is complete.

System.Object eventArgs

The event arguments associated with the drag/drop operations.

System.Type[] ignoreTypes

Ignores the control types when trying to drag so that the user can still interact with the controls without entering a drag/drop operation.

  • View Source
In This Article
Back to top Generated by DocFX