UI Automation Support for the Combo Box Control Type
This topic provides information about UI Automation support for the Combo Box control type. In UI Automation, a control type is a set of conditions that a control must meet in order to use the ControlTypeProperty property. The conditions include specific guidelines for UI Automation tree structure, UI Automation property values, control patterns, and UI Automation events.
A combo box is a list box combined with a static control or an edit control that displays the currently selected item in the list box portion of the combo box. The list box portion of the control is displayed at all times or only appears when the user selects the drop-down arrow (which is a push button) next to the control. If the selection field is an edit control, the user can enter information that is not in the list; otherwise, the user can only select items in the list.
The following sections define the required UI Automation tree structure, properties, control patterns, and events for the Combo Box control type. The UI Automation requirements apply to all combo box 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 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 combo box controls and describes what can be contained in each view. For more information about the UI Automation tree, see UI Automation Tree Overview.
Control View | Content View |
---|---|
|
|
The edit control in the control view of the combo box is necessary only if the combo box can be edited to take any input, as is the case of the combo box in the Run dialog box.
Required UI Automation Properties
The following table lists the UI Automation properties whose value or definition is especially relevant to combo box controls. For more information about UI Automation properties, see UI Automation Properties for Clients.
UI Automation Property | Value | Notes |
---|---|---|
See notes. |
The value of this property needs to be unique across all controls in an application. |
|
See notes. |
The outermost rectangle that contains the whole control. |
|
See notes. |
Supported if there is a bounding rectangle. If not every point within the bounding rectangle is clickable, and you perform specialized hit testing, then override and provide a clickable point. |
|
ComboBox |
This value is the same for all UI frameworks. |
|
See notes. |
The help text for combo box controls should explain why the user is being asked to make a choice from a combo box of options. For example, “Selecting an item from this combo box will cause the display resolution for your monitor to be set.” |
|
True |
Combo box controls are always included in the content view of the UI Automation tree. |
|
True |
Combo box controls are always included in the control view of the UI Automation tree. |
|
True |
Combo box controls expose a set of items from a selection container. The combo box control can receive keyboard focus, although when a UI Automation client sets focus on a combo box, any items in the combo box subtree might receive the focus. |
|
See notes. |
Combo box controls typically have a static text label that this property references. |
|
"combo box" |
Localized string corresponding to the Combo Box control type. |
|
See notes. |
The combo box control typically gets its name from a static text control. |
Required UI Automation Control Patterns
The following table lists the UI Automation control patterns required to be supported by all combo box controls. For more information on control patterns, see UI Automation Control Patterns Overview.
Control Pattern/Pattern Property | Support/Value | Notes |
---|---|---|
Yes |
The combo box control must always contain the drop-down button in order to be a combo box. |
|
Yes |
Displays the current selection in the combo box. This support is delegated to the list box beneath the combo box. |
|
Depends |
If the combo box has the ability to take arbitrary text values, the Value pattern must be supported. This pattern provides the ability to programmatically set the string contents of the combo box. If the Value pattern is not supported, this indicates that the user must make a selection from the list items within the subtree of the combo box. |
|
Never |
The Scroll pattern is never supported on a combo box directly. It is supported if a list box contained within a combo box can scroll. It may only be supported when the list box is visible on the screen. |
Required Events
The following table lists the UI Automation events required to be supported by all combo box controls. For more information on events, see UI Automation Events Overview.
UI Automation Event | Support | Notes |
---|---|---|
Required |
None |
|
BoundingRectangleProperty property-changed event. |
Required |
None |
IsOffscreenProperty property-changed event. |
Required |
None |
IsEnabledProperty property-changed event. |
Required |
None |
Required |
None |
|
ExpandCollapseStateProperty property-changed event. |
Required |
None |
ValueProperty property-changed event. |
Depends |
If the control supports the Value pattern, it must support this event. |