バージョン

Command プロパティ (MenuTool)

メニュー ツールのボタン部分が押された時に起動するためのコマンドを取得または設定します。
シンタックス
'宣言
 
Public Property Command As ICommand
public ICommand Command {get; set;}
使用例
Dim menuTool As New MenuTool() 
menuTool.Caption = "Menu Tool" 
menuTool.ButtonType = MenuToolButtonType.Segmented 
menuTool.SmallImage = getImageSource("/Images/icons/Ribbon/QuickStyles_16x16.png") 
menuTool.LargeImage = getImageSource("/Images/icons/Ribbon/QuickStyles_32x32.png") 

menuTool.Items.Add("Menu Item 1") 
menuTool.Items.Add("Menu Item 2") 

menuTool.Command = ApplicationCommands.Paste
MenuTool menuTool = new MenuTool();
menuTool.Caption = "Menu Tool";
menuTool.ButtonType = MenuToolButtonType.Segmented;
menuTool.SmallImage= getImageSource("/Images/icons/Ribbon/QuickStyles_16x16.png");
menuTool.LargeImage= getImageSource("/Images/icons/Ribbon/QuickStyles_32x32.png");

menuTool.Items.Add("Menu Item 1");
menuTool.Items.Add("Menu Item 2");

menuTool.Command = ApplicationCommands.Paste;
<igRibbon:MenuTool
    
Caption= "Menu Tool"
    ButtonType= "Segmented" 
    SmallImage= "Images\icons\Ribbon\QuickStyles_16x16.png" 
    
LargeImage= "Images\icons\Ribbon\QuickStyles_32x32.png" 
    
Command= "Paste"
 
   CommandTarget="{Binding ElementName=textBox}"
    
>
    
<TextBlock Text="Menu Item 1"/>
    
<TextBlock Text="Menu Item 2"/>
</igRibbon:MenuTool>
参照