/// <summary> /// Moves one or more items in solution explorer to the destination using the mouse. /// </summary> private static void MoveByMouse(IVisualStudioInstance vs, ITreeNode destination, params ITreeNode[] source) { destination.DragOntoThis(Key.LeftShift, source); }
/// <summary> /// Moves one or more items in solution explorer to the destination using the mouse. /// </summary> internal static void CopyByMouse(IVisualStudioInstance vs, ITreeNode destination, params ITreeNode[] source) { destination.DragOntoThis(Key.LeftCtrl, source); }
/// <summary> /// Moves one or more items in solution explorer to the destination using the mouse. /// </summary> private static void MoveByMouse(IVisualStudioInstance vs, ITreeNode destination, params ITreeNode[] source) { destination.DragOntoThis(Key.LeftShift, source); vs.MaybeCheckMessageBox(TestUtilities.MessageBoxButton.Ok, "One or more files will be"); }
/// <summary> /// Moves or copies (taking the default behavior) one or more items in solution explorer to /// the destination using the mouse. /// </summary> private static void DragAndDrop(IVisualStudioInstance vs, ITreeNode destination, params ITreeNode[] source) { destination.DragOntoThis(source); }