示例#1
0
 /// <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>
 private static void MoveByMouse(IVisualStudioInstance vs, ITreeNode destination, params ITreeNode[] source)
 {
     destination.DragOntoThis(Key.LeftShift, source);
 }
示例#3
0
 /// <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);
 }
示例#4
0
 /// <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");
 }
示例#5
0
 /// <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);
 }