MenuItem.MdiList 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,通过该值指示是否使用在关联窗体内显示的多文档界面 (MDI) 子窗口列表来填充菜单项。
public:
property bool MdiList { bool get(); void set(bool value); };
public bool MdiList { get; set; }
member this.MdiList : bool with get, set
Public Property MdiList As Boolean
属性值
如果要在此菜单项中显示 MDI 子窗口列表,则为 true
;否则为 false
。 默认值为 false
。
示例
下面的代码示例创建一个 MenuItem ,用于在 MDI 窗体中显示当前打开的 MDI 子窗体的列表。
public:
void SetMDIList()
{
// Create the MenuItem to be used to display an MDI list.
MenuItem^ menuItem1 = gcnew MenuItem;
// Set this menu item to be used as an MDI list.
menuItem1->MdiList = true;
}
public void SetMDIList()
{
// Create the MenuItem to be used to display an MDI list.
MenuItem menuItem1 = new MenuItem();
// Set this menu item to be used as an MDI list.
menuItem1.MdiList = true;
}
Public Sub SetMDIList()
' Create the MenuItem to be used to display an MDI list.
Dim menuItem1 As New MenuItem()
' Set this menu item to be used as an MDI list.
menuItem1.MdiList = True
End Sub
注解
选择菜单项以显示 MDI 子窗口列表时,该列表将显示为菜单项的子菜单。 窗口列表中仅显示定义为 MDI 子窗体的窗体。 一次只能显示九个子窗口。 如果显示超过 9 个子窗口,则显示“更多窗口...”菜单项显示在窗口列表的末尾。 单击此菜单项将显示一个对话框,其中包含当前处于活动状态的子窗口的完整列表。