/// <summary> /// Delegate called when the mouse is up on a graph view item. /// </summary> /// <param name="pSender">The item of interest.</param> /// <param name="pEventArgs">The event arguments.</param> private static void OnItemMouseUp(object pSender, MouseButtonEventArgs pEventArgs) { DragGraphItemBehavior.ReleaseDraggedItem(); }
/// <summary> /// Delegate called when the mouse move on a graph view item. /// </summary> /// <param name="pSender">The item of interest.</param> /// <param name="pEventArgs">The event arguments.</param> private static void OnItemMouseMove(object pSender, MouseEventArgs pEventArgs) { DragGraphItemBehavior.HandleDragItem(pEventArgs); }