RibbonButton.ControlSize 属性

定义

获取或设置按钮的大小。

public:
 property Microsoft::Office::Core::RibbonControlSize ControlSize { Microsoft::Office::Core::RibbonControlSize get(); void set(Microsoft::Office::Core::RibbonControlSize value); };
public Microsoft.Office.Core.RibbonControlSize ControlSize { get; set; }
member this.ControlSize : Microsoft.Office.Core.RibbonControlSize with get, set
Public Property ControlSize As RibbonControlSize

属性值

一个 Microsoft.Office.Core.RibbonControlSize,表示按钮的大小。

示例

以下示例使按钮看起来更大。 若要运行此代码示例,必须先执行以下步骤:

  1. 功能区 (Visual Designer) 项添加到使用 Visual Studio 中的 Office 开发工具创建的项目中。

  2. 将组添加到自定义选项卡。

  3. 向组添加按钮。

private void SetButtonProperties()
{
    button1.ControlSize =
        Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
    button1.Description = "My Ribbon Button";
}
Private Sub SetButtonProperties()
    Button1.ControlSize = _
        Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge
    button1.Description = "My Ribbon Button"
End Sub

注解

如果按钮是菜单的一部分,则此属性不起作用。 作为菜单一部分的按钮始终显示,就像其 ControlSize 属性设置为父菜单 ItemSize 属性的值一样。 若要使按钮在菜单上显示得更大,请将 的 RibbonMenu 属性设置为 。ItemSizeMicrosoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge

适用于