Skip to content

Latest commit

 

History

History
83 lines (61 loc) · 7.1 KB

ui-automation-support-for-the-statusbar-control-type.md

File metadata and controls

83 lines (61 loc) · 7.1 KB
title description ms.date helpviewer_keywords ms.assetid
UI Automation Support for the StatusBar Control Type
Get information about UI Automation support for the StatusBar control type. Learn the required tree structure, properties, control patterns, and events.
03/30/2017
StatusBar control type
UI Automation, Status Bar control type
control types, Status Bar
48dee94a-5119-4939-a4c7-ffeaf794c732

UI Automation Support for the StatusBar Control Type

Note

This documentation is intended for .NET Framework developers who want to use the managed UI Automation classes defined in the xref:System.Windows.Automation namespace. For the latest information about UI Automation, see Windows Automation API: UI Automation.

This topic provides information about UI Automation support for the StatusBar control type. In UI Automation, a control type is a set of conditions that a control must meet in order to use the xref:System.Windows.Automation.AutomationElement.ControlTypeProperty property. The conditions include specific guidelines for UI Automation tree structure, UI Automation property values and control patterns.

A status bar control displays information about an object being viewed in a window of an application, the object's component, or contextual information that relates to that object's operation within your application.

The following sections define the required UI Automation tree structure, properties, control patterns, and events for the StatusBar control type. The UI Automation requirements apply to all status bar controls, whether Windows Presentation Foundation (WPF), Win32, or Windows Forms.

Required UI Automation Tree Structure

The following table depicts the control view and the content view of the UI Automation tree that pertains to status bar 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
StatusBar

- Edit (0 or more)
- Progress Bar (0 or many)
- Image (0 or many)
- Button (0 or many)
StatusBar

- Edit (0 or more)
- ProgressBar (0 or many)
- Image (0 or many)
- Button (0 or many)

Required UI Automation Properties

The following table lists the UI Automation properties whose value or definition is especially relevant to progress bar controls. For more information about UI Automation properties, see UI Automation Properties for Clients.

UI Automation Property Value Notes
xref:System.Windows.Automation.AutomationElementIdentifiers.AutomationIdProperty See notes. The value of this property needs to be unique across all controls in an application.
xref:System.Windows.Automation.AutomationElementIdentifiers.BoundingRectangleProperty See notes. The bounding rectangle of a status bar must encompass all of the controls contained within it.
xref:System.Windows.Automation.AutomationElementIdentifiers.ClickablePointProperty 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.
xref:System.Windows.Automation.AutomationElementIdentifiers.IsKeyboardFocusableProperty See notes. If the control can receive keyboard focus, it must support this property.
xref:System.Windows.Automation.AutomationElementIdentifiers.NameProperty See notes. The status bar control does not need a name unless more than one is used within an application. In this case, distinguish each bar with names such as "Internet Status" or "Application Status."
xref:System.Windows.Automation.AutomationElementIdentifiers.LabeledByProperty Null The status bar control usually does not have a label.
xref:System.Windows.Automation.AutomationElementIdentifiers.ControlTypeProperty StatusBar This value is the same for all UI frameworks.
xref:System.Windows.Automation.AutomationElementIdentifiers.LocalizedControlTypeProperty "status bar" Localized string corresponding to the StatusBar control type.
xref:System.Windows.Automation.AutomationElementIdentifiers.IsContentElementProperty True The status bar control always contains content.
xref:System.Windows.Automation.AutomationElementIdentifiers.IsControlElementProperty True The status bar control is always a control.
xref:System.Windows.Automation.AutomationElementIdentifiers.IsOffscreenProperty Depends A status bar control will return True for this property if it is not currently visible on the screen.
xref:System.Windows.Automation.AutomationElementIdentifiers.OrientationProperty Depends The value of the control's orientation: horizontal or vertical.
xref:System.Windows.Automation.AutomationElementIdentifiers.IsKeyboardFocusableProperty False Not applicable
xref:System.Windows.Automation.AutomationElementIdentifiers.AcceleratorKeyProperty Null Status bars do not have accelerator keys.

Required UI Automation Control Patterns

The following table lists the UI Automation control patterns required to be supported by status bar controls. For more information about control patterns, see UI Automation Control Patterns Overview.

Control Pattern Support Notes
xref:System.Windows.Automation.Provider.IGridProvider Optional Status bar controls should support the Grid control pattern so that individual pieces can be monitored and easily referenced for information.

Required UI Automation Events

The following table lists the UI Automation events required to be supported by all status bar controls. For more information about events, see UI Automation Events Overview.

UI Automation Event Support Notes
xref:System.Windows.Automation.AutomationElementIdentifiers.BoundingRectangleProperty property-changed event. Required None
xref:System.Windows.Automation.AutomationElementIdentifiers.IsOffscreenProperty property-changed event. Required None
xref:System.Windows.Automation.AutomationElementIdentifiers.IsEnabledProperty property-changed event. Required None
xref:System.Windows.Automation.AutomationElementIdentifiers.AutomationFocusChangedEvent Required None
xref:System.Windows.Automation.AutomationElementIdentifiers.StructureChangedEvent Required None

See also