RibbonTab.GroupSizeReductionOrder 属性

定义

获取或设置 RibbonGroup 名称集合,这些名称指定在功能区大小缩小时应用组大小定义时所使用的顺序。

public:
 property System::Collections::Specialized::StringCollection ^ GroupSizeReductionOrder { System::Collections::Specialized::StringCollection ^ get(); void set(System::Collections::Specialized::StringCollection ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.Controls.Ribbon.StringCollectionConverter))]
public System.Collections.Specialized.StringCollection GroupSizeReductionOrder { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Controls.Ribbon.StringCollectionConverter))>]
member this.GroupSizeReductionOrder : System.Collections.Specialized.StringCollection with get, set
Public Property GroupSizeReductionOrder As StringCollection

属性值

StringCollection

RibbonGroup 名称的集合,这些名称指定在 Ribbon 大小缩小时应用组大小定义时所使用的顺序。 已注册的默认值为 null。 有关什么可以影响值的详细信息,请参阅 Dependency Property Value Precedence(依赖项属性值优先级)

属性

示例

下面的示例演示如何指定 GroupSizeReductionOrder

<ribbon:RibbonTab Header="Home"   
    GroupSizeReductionOrder="Clipboard, Insert, Insert, Paragraph, Clipboard, Editing, Font, Clipboard" >  
    <ribbon:RibbonGroup Header="Clipboard" Name="Clipboard" SmallImageSource="Images/Paste16.png">  
        ...    
    </ribbon:RibbonGroup>  
    <ribbon:RibbonGroup Header="Font" Name="Font" SmallImageSource="Images\FontColor16.png">  
        ...  
    </ribbon:RibbonGroup>  
    <ribbon:RibbonGroup Header="Paragraph" Name="Paragraph" SmallImageSource="Images/AlignLeft16.png">  
        ...  
    </ribbon:RibbonGroup>  
    <ribbon:RibbonGroup Header="Insert" Name="Insert" SmallImageSource="Images/InsertPicture16.png">  
        ...  
    </ribbon:RibbonGroup>  
    <ribbon:RibbonGroup Header="Editing" Name="Editing" SmallImageSource="Images/Find16.png">  
        ...  
    </ribbon:RibbonGroup>  
</ribbon:RibbonTab>  

注解

依赖项属性信息

标识符字段 GroupSizeReductionOrderProperty
元数据属性设置为 true

适用于

另请参阅