示例#1
0
 public List <VSMenuCommand> GetItemsByPlace(MenuCommandPlace place)
 {
     if (SortedMenuCommand.ContainsKey(place))
     {
         return(SortedMenuCommand[place]);
     }
     return(null);
 }
示例#2
0
 public List<VSMenuCommand> GetRegisteredCommandsByPlace(MenuCommandPlace place)
 {
     return MenuCollection.GetItemsByPlace(place);
 }
示例#3
0
 public List <VSMenuCommand> GetRegisteredCommandsByPlace(MenuCommandPlace place)
 {
     return(MenuCollection.GetItemsByPlace(place));
 }