Compartilhar via


Suporte de Automação de Interface de Usuário para o Tipo de Controle Slider

Observação

Esta documentação destina.Os desenvolvedores do NET Framework que desejam usar o gerenciado UI Automation classes definidas na System.Windows.Automation namespace.As informações mais recentes sobre UI Automation, consulte API de automação do Windows: Automação da interface do usuário.

Este tópico fornece informações sobre UI Automation suporte para o tipo de controle do controle deslizante. In UI Automation, a control type is a set of conditions that a control must meet in order to use the ControlTypeProperty property. As condições incluem as diretrizes específicas para UI Automation estrutura de árvore, UI Automation os valores de propriedade e tipos de controle.

The Slider control is a composite control with buttons that enable a user with a mouse to set a numerical range or select from a set of items.

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

Este tópico contém as seguintes seções.

  • Required UI Automation Tree Structure
  • Required UI Automation Properties
  • Required UI Automation Control Patterns
  • Required UI Automation Events
  • Tópicos relacionados

Required UI Automation Tree Structure

A tabela a seguir ilustra o Modo de exibição do controle e o Exibição de conteúdo da UI Automation árvore que diz respeito a controles deslizantes e descreve o que pode estar contido em cada exibição. For more information on the UI Automation tree, see Visão geral da árvore de automação de interface do usuário.

Control View

Content View

Slider

  • Button (2 or 4)

  • Thumb (only 1)

  • List Item (0 or more)

Slider

  • List Item (0 or more)

Required UI Automation Properties

The following table lists the UI Automation properties whose value or definition is especially relevant to the Slider control type. For more information on UI Automation properties, see UI Automation Properties for Clients.

UI Automation Property

Value

Notes

AutomationIdProperty

See notes.

The value of this property needs to be unique across all controls in an application.

BoundingRectangleProperty

See notes.

The outermost rectangle that contains the whole control.

ClickablePointProperty

See notes

The majority of slider controls must raise the NoClickablePointException because the entire bounding rectangle of the slider control is occupied by child controls.

IsKeyboardFocusableProperty

See notes.

If the control can receive keyboard focus, it must support this property.

NameProperty

See notes.

The name of the edit control is typically generated from a static text label. If there is not a static text label, a property value for Name must be assigned by the application developer. The Name property should never contain the textual contents of the edit control.

LabeledByProperty

See notes.

If there is a static text label associated with the control, then this property must expose a reference to that control. If the text control is a subcomponent of another control, it will not have a LabeledBy property set.

ControlTypeProperty

Slider

This value is the same for all UI frameworks.

LocalizedControlTypeProperty

"slider"

Localized string corresponding to the Edit Control Type.

IsContentElementProperty

True

The edit control is always included in the content view of the UI Automation tree.

IsControlElementProperty

True

The edit control is always included in the control view of the UI Automation tree.

Required UI Automation Control Patterns

The following table lists the UI Automation control patterns required to be supported by all slider controls. For more information on control patterns, see Visão Geral de Padrões de Controle de Automação de Interface de Usuário.

Padrão de controle

Support

Notes

ISelectionProvider

Depends

Um controle deslizante deve suportar o padrão de controle de seleção se o conteúdo representa um valor entre um conjunto separado de opções. Quando o padrão de controle de seleção é suportado, a seleção correspondente deve ser exposta como um ou mais itens de lista de filhos do controle deslizante.

IRangeValueProvider

Depends

Um controle deslizante deve suportar o padrão de controle de RangeValue se o conteúdo pode ser definido como um valor dentro de um intervalo numérico.

IValueProvider

Depends

Um controle deslizante deve suportar o padrão de controle de valor se o conteúdo representa um valor entre um conjunto separado de opções.

Required UI Automation Events

The following table lists the UI Automation events required to be supported by all slider controls.

For more information on events, see Visão geral sobre eventos de automação de interface do usuário.

UI Automation Event

Support

Notes

InvalidatedEvent

Depends

None

BoundingRectanglePropertyevento de propriedade alterada

Required

None

IsOffscreenPropertyevento de propriedade alterada

Required

None

IsEnabledPropertyevento de propriedade alterada

Required

None

ValuePropertyevento de propriedade alterada

Depends

None

AutomationFocusChangedEvent

Required

None

StructureChangedEvent

Required

None

Consulte também

Referência

Slider

Conceitos

Visão Geral dos Tipos de Controle de Automação de Interface do Usuário

UI Automation Overview