コード例 #1
0
ファイル: Ribbon.cs プロジェクト: 15831944/Code_OpenSource
        public CommandToolButton AddToolButton(Command command)
        {
            var button = new CommandToolButton(command);

            AddToolButton(button, command.Category);
            return(button);
        }
コード例 #2
0
ファイル: Ribbon.cs プロジェクト: ondrej11/o106
 public CommandToolButton AddToolButton(Command command)
 {
     var button = new CommandToolButton(command);
     AddToolButton(button, command.Category);
     return button;
 }