void AddNewWatch() { AddWatchCommand command = new AddWatchCommand { Owner = this }; command.Run(); }
void watchList_DoubleClick(object sender, MouseEventArgs e) { if (watchList.SelectedNode == null) { AddWatchCommand command = new AddWatchCommand { Owner = this }; command.Run(); } }