RibbonMenu.Items 属性

定义

获取菜单上的控件的集合。

public:
 property System::Collections::Generic::IList<Microsoft::Office::Tools::Ribbon::RibbonControl ^> ^ Items { System::Collections::Generic::IList<Microsoft::Office::Tools::Ribbon::RibbonControl ^> ^ get(); };
public System.Collections.Generic.IList<Microsoft.Office.Tools.Ribbon.RibbonControl> Items { get; }
member this.Items : System.Collections.Generic.IList<Microsoft.Office.Tools.Ribbon.RibbonControl>
Public ReadOnly Property Items As IList(Of RibbonControl)

属性值

菜单上的控件的集合。

例外

加载功能区后,可尝试在此集合中添加、移除或替换 RibbonControl

注解

若要在运行时将功能区控件添加到菜单,请创建控件的实例,然后将新控件添加到 Items 集合。 如果要在功能区加载到 Office 应用程序后执行此操作,必须将 属性设置为 Dynamictrue。 有关详细信息,请参阅 功能区对象模型概述

使用功能区Designer向菜单添加控件时,Visual Studio 会自动将控件添加到Items菜单的 属性。

适用于