バージョン

ShouldDisplayGalleryPreview プロパティ

RibbonGroup で表示される場合、ギャラリー ツールがメニューのギャラリー プレビュー領域に項目を表示するかどうかを取得または設定します。
シンタックス
'宣言
 
Public Property ShouldDisplayGalleryPreview As Boolean
public bool ShouldDisplayGalleryPreview {get; set;}
使用例
Dim menuTool As New MenuTool() 
menuTool.Caption = "Menu Tool" 
menuTool.ButtonType = MenuToolButtonType.SegmentedState 
menuTool.SmallImage = getImageSource("/Images/icons/Ribbon/QuickStyles_16x16.png") 
menuTool.LargeImage = getImageSource("/Images/icons/Ribbon/QuickStyles_32x32.png") 
menuTool.ShouldDisplayGalleryPreview = True
MenuTool menuTool = new MenuTool();
menuTool.Caption = "Menu Tool";
menuTool.ButtonType = MenuToolButtonType.SegmentedState;
menuTool.SmallImage= getImageSource("/Images/icons/Ribbon/QuickStyles_16x16.png");
menuTool.LargeImage= getImageSource("/Images/icons/Ribbon/QuickStyles_32x32.png");
menuTool.ShouldDisplayGalleryPreview = true;
<igRibbon:MenuTool
    
Caption= "Menu Tool"
    ButtonType= "Segmented" 
    SmallImage= "Images\icons\Ribbon\QuickStyles_16x16.png" 
    
LargeImage= "Images\icons\Ribbon\QuickStyles_32x32.png" 
    
ShouldDisplayGalleryPreview="True"
    
Command= "Paste"
 
   CommandTarget="{Binding ElementName=textBox}"
    
>
    
<TextBlock Text="Menu Item 1"/>
    
<TextBlock Text="Menu Item 2"/>
</igRibbon:MenuTool>
参照