Esempio n. 1
0
 public void Delete()
 {
     UICommands.StartDeleteBranchDialog(ParentWindow(), new[]
     {
         FullPath
     });
 }
Esempio n. 2
0
            public void DeleteAll()
            {
                var branches = Nodes.DepthEnumerator <LocalBranchNode>().Select(branch => branch.FullPath);

                UICommands.StartDeleteBranchDialog(ParentWindow(), branches);
            }
Esempio n. 3
0
 public bool Delete()
 {
     return(UICommands.StartDeleteBranchDialog(ParentWindow(), FullPath));
 }