UI Automation Support for the Menu Control Type
This topic provides information about Microsoft UI Automation support for the Menu control type. It describes the control's Microsoft UI Automation tree structure and provides the properties and control patterns for specific control scenarios.
A menu control allows hierarchal organization of elements associated with commands and event handlers. In a typical Microsoft Windows application, a menu bar contains several menu buttons (such as File, Edit, and Window), and each menu button displays a menu. A menu contains a collection of menu items (such as New, Open, and Close), which can be expanded to display additional menu items or to perform a specific action when clicked.
The following sections define the required UI Automation tree structure, properties, control patterns, and events for the Menu control type. The UI Automation requirements apply to all list controls, whether Windows Presentation Foundation (WPF), Win32, or Windows Forms.
This topic contains the following sections.
- Required UI Automation Tree Structure
- Required UI Automation Properties
- Required UI Automation Control Patterns
- Required UI Automation Events
- Related Topics
Required UI Automation Tree Structure
The following table depicts the control view and the content view of the UI Automation tree that pertains to menu controls and describes what can be contained in each view. For more information on the UI Automation tree, see UI Automation Tree Overview.
Control View | Content View |
---|---|
|
|
Menu controls always appear in the control view and the content view of the UI Automation tree. Menu control types should appear under the control that their information is referring to. UI Automation clients must listen for MenuOpenedEvent
to ensure that they consistently obtain information conveyed by menu controls. Context menu controls are a special case. They appear as children of the Desktop.
Required UI Automation Properties
The following table lists the UI Automation properties whose value or definition is especially relevant to the Menu control type. For more information on UI Automation properties, see UI Automation Properties for Clients.
UI Automation Property | Value | Notes |
---|---|---|
Not Supported |
The menu control does not require a Name property to be set. |
|
Null |
No label. |
|
Menu |
This value is the same for all UI frameworks. |
|
False |
The menu control is not included in the content view of the UI Automation tree. |
|
True |
The menu control is always included in the control view of the UI Automation tree. |
Required UI Automation Control Patterns
There are no required control patterns for the Menu control type.
Required UI Automation Events
Menu controls must raise MenuOpenedEvent
when they appear on the screen. The MenuOpenedEvent
will include the text of the control. The MenuClosedEvent
must be raised when a menu disappears from the screen.
The following table lists the UI Automation events required to be supported by all menu controls. For more information on events, see UI Automation Events Overview.
UI Automation Event | Support/Value | Notes |
---|---|---|
Required |
None |
|
Required |
None |
|
BoundingRectangleProperty property-changed event. |
Required |
None |
IsOffscreenProperty property-changed event. |
Required |
None |
IsEnabledPropertyproperty-changed event. |
Required |
None |
Required |
None |
|
Required |
None |
See Also
Reference
Concepts
UI Automation Control Patterns Overview
UI Automation Control Types Overview
UI Automation Overview