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