Example #1
0
 internal void AddSubFolder(string name)
 {
     mTreeView.SelectedItem.ContextMenu["Add Sub Folder"].Click();
     CurrentInputBoxWindow.SetText(name);
     CurrentInputBoxWindow.ClickOK();
     SleepWithDoEvents(500);
 }
Example #2
0
 internal void Paste(string NewName = null)
 {
     SelectedItem.ContextMenu["Paste"].Click();
     if (NewName != null)
     {
         CurrentInputBoxWindow.SetText(NewName);
         CurrentInputBoxWindow.ClickOK();
     }
 }