示例#1
0
 public ICommandBar AddCommand(string displayName, ICommand command, object commandParameter)
 {
     CommandModel commandMenuItem = new CommandModel();
     commandMenuItem.Content = displayName;
     commandMenuItem.Command = command;
     commandMenuItem.CommandParameter = commandParameter;
     _items.Add(commandMenuItem);
     return this;
 }
示例#2
0
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     _items.Add(commandPresentation);
     return this;
 }
示例#3
0
 public ICommandBar AddCommand(CommandModel commandPresentation)
 {
     return _commandBar.AddCommand(commandPresentation);
 }