Control.ControlAccessibleObject 类

定义

提供有关辅助功能应用程序可使用的控件的信息。

public: ref class Control::ControlAccessibleObject : System::Windows::Forms::AccessibleObject
[System.Runtime.InteropServices.ComVisible(true)]
public class Control.ControlAccessibleObject : System.Windows.Forms.AccessibleObject
public class Control.ControlAccessibleObject : System.Windows.Forms.AccessibleObject
[<System.Runtime.InteropServices.ComVisible(true)>]
type Control.ControlAccessibleObject = class
    inherit AccessibleObject
type Control.ControlAccessibleObject = class
    inherit AccessibleObject
Public Class Control.ControlAccessibleObject
Inherits AccessibleObject
继承
Control.ControlAccessibleObject
继承
派生
属性

示例

下面的代码示例创建一个从类派生 CheckBox 的复选框控件,并为要使用的派生类创建自定义 Control.ControlAccessibleObject 控件。 派生类MyCheckBox默认有一个AppearanceButton,因此它显示为切换按钮。 派生 Control.ControlAccessibleObjectMyCheckBoxControlAccessibleObject重写三个属性,以考虑外观差异。

#using <Accessibility.dll>
#using <System.Drawing.dll>
#using <System.dll>
#using <System.Windows.Forms.dll>

using namespace System;
using namespace System::Windows::Forms;
using namespace System::Drawing;

namespace MyCustomControls
{
   public ref class MyCheckBox: public CheckBox
   {
   public:
      MyCheckBox()
      {
         // Make the check box appear like a toggle button.
         this->Appearance = ::Appearance::Button;

         // Center the text on the button.
         this->TextAlign = ContentAlignment::MiddleCenter;

         // Set the AccessibleDescription text.
         this->AccessibleDescription = "A toggle style button.";
      }

   protected:

      // Create an instance of the AccessibleObject
      // defined for the 'MyCheckBox' control
      virtual AccessibleObject^ CreateAccessibilityInstance() override;
   };

   // Accessible Object* for use with the 'MyCheckBox' control.
   private ref class MyCheckBoxAccessibleObject: public Control::ControlAccessibleObject
   {
   public:
      MyCheckBoxAccessibleObject( MyCheckBox^ owner )
         : ControlAccessibleObject( owner )
      {}

      property String^ DefaultAction 
      {
         virtual String^ get() override
         {
            // Return the DefaultAction based upon
            // the state of the control.
            if ( (dynamic_cast<MyCheckBox^>(Owner))->Checked )
            {
               return "Toggle button up";
            }
            else
            {
               return "Toggle button down";
            }
         }
      }

      property String^ Name 
      {
         virtual String^ get() override
         {
            // Return the Text property of the control
            // if the AccessibleName is 0.
            String^ name = Owner->AccessibleName;
            if ( name != nullptr )
            {
               return name;
            }

            return (dynamic_cast<MyCheckBox^>(Owner))->Text;
         }

         virtual void set( String^ value ) override
         {
            ControlAccessibleObject::Name = value;
         }
      }

      property AccessibleRole Role 
      {
         virtual AccessibleRole get() override
         {
            // Since the check box appears like a button,
            // make the Role the same as a button.
            return AccessibleRole::PushButton;
         }
      }
   };

   AccessibleObject^ MyCheckBox::CreateAccessibilityInstance()
   {
      return gcnew MyCheckBoxAccessibleObject( this );
   }
}
using System;
using System.Windows.Forms;
using Accessibility;
using System.Drawing;

namespace MyCustomControls
{
   public class MyCheckBox : CheckBox
   {
      public MyCheckBox()
      {
         // Make the check box appear like a toggle button.
         this.Appearance = Appearance.Button;
         // Center the text on the button.
         this.TextAlign = ContentAlignment.MiddleCenter;
         // Set the AccessibleDescription text.
         this.AccessibleDescription = "A toggle style button.";
      }
      
      // Create an instance of the AccessibleObject 
      // defined for the 'MyCheckBox' control
      protected override AccessibleObject CreateAccessibilityInstance() 
      {
         return new MyCheckBoxAccessibleObject(this);
      }
   }

   // Accessible object for use with the 'MyCheckBox' control.
   internal class MyCheckBoxAccessibleObject : Control.ControlAccessibleObject 
   {
      public MyCheckBoxAccessibleObject(MyCheckBox owner) : base(owner) 
      {
      }
               
      public override string DefaultAction 
      {
         get
         {
            // Return the DefaultAction based upon 
            // the state of the control.
            if( ((MyCheckBox)Owner).Checked )
            {
               return "Toggle button up";
            }
            else
            {
               return "Toggle button down";
            }
         }
      }

      public override string Name 
      {
         get 
         {
            // Return the Text property of the control 
            // if the AccessibleName is null.
            string name = Owner.AccessibleName;
            if (name != null) 
            {
               return name;
            }
            return ((MyCheckBox)Owner).Text;
         }
         
         set
         {
            base.Name = value;
         }
      }            
               
      public override AccessibleRole Role 
      {
         get 
         {
            // Since the check box appears like a button,
            // make the Role the same as a button.
            return AccessibleRole.PushButton;
         }
      }
   }
}
Imports System.Windows.Forms
Imports Accessibility
Imports System.Drawing

Namespace MyCustomControls
   Public Class MyCheckBox
      Inherits CheckBox
      
      Public Sub New()
         ' Make the check box appear like a toggle button.
         Me.Appearance = Appearance.Button
         ' Center the text on the button.
         Me.TextAlign = ContentAlignment.MiddleCenter
      End Sub
      
      ' Create an instance of the AccessibleObject 
      ' defined for the 'MyCheckBox' control 
      Protected Overrides Function CreateAccessibilityInstance() _
        As AccessibleObject
         Return New MyCheckBoxAccessibleObject(Me)
      End Function
   End Class
    
   ' Accessible object for use with the 'MyCheckBox' control.
   Friend Class MyCheckBoxAccessibleObject
      Inherits Control.ControlAccessibleObject
      
      Public Sub New(owner As MyCheckBox)
         MyBase.New(owner)
      End Sub
      
      Public Overrides ReadOnly Property DefaultAction() As String
         Get
            ' Return the DefaultAction based upon 
            ' the state of the control. 
            If CType(Owner, MyCheckBox).Checked Then
               Return "Toggle button up"
            Else
               Return "Toggle button down"
            End If
         End Get
      End Property
      
      Public Overrides Property Name() As String
         Get
            ' Return the Text property of the control 
            ' if the AccessibleName is null. 
            Dim accessibleName As String = Owner.AccessibleName
            If (accessibleName IsNot Nothing) Then
               Return accessibleName
            End If
            Return CType(Owner, MyCheckBox).Text
         End Get

         Set
            MyBase.Name = value
         End Set
      End Property
      
      Public Overrides ReadOnly Property Role() As AccessibleRole
         Get
            ' Since the check box appears like a button,
            ' make the Role the same as a button. 
            Return AccessibleRole.PushButton
         End Get
      End Property
   End Class
End Namespace

注解

Windows 窗体内置了辅助功能支持,并提供有关应用程序的信息,使应用程序能够使用辅助功能客户端应用程序。 辅助功能客户端应用程序的示例包括:屏幕放大和审阅者实用工具、语音输入实用工具、屏幕键盘、备用输入设备和键盘增强实用工具。 有时,需要向辅助功能客户端应用程序提供其他信息。 可通过两种方式提供此附加信息。 若要为现有控件提供有限的辅助功能信息,请设置控件的、AccessibleNameAccessibleDescriptionAccessibleDefaultActionDescriptionAccessibleRole属性值,这些值将报告给辅助功能客户端应用程序。 或者,如果需要将更多辅助功能信息包含在控件中,则可以编写派生自 AccessibleObjectControl.ControlAccessibleObject 类的自己的类。 例如,如果要编写不派生自公共控件的控件,或者需要控件中的命中测试等操作,则应通过调用CreateAccessibilityInstance该方法为控件创建一个Control.ControlAccessibleObject控件。

备注

如果重写 AccessibleObject.GetChild 该方法,则还必须重写 AccessibleObject.GetChildCount 该方法。 若要获取或设置AccessibilityObject属性,必须添加对随.NET Framework一起安装的程序集的引用Accessibility

有关可访问对象的详细信息,请参阅 Microsoft Active Accessibility

构造函数

Control.ControlAccessibleObject(Control)

初始化 Control.ControlAccessibleObject 类的新实例。

属性

Bounds

获取辅助性对象的位置和大小。

(继承自 AccessibleObject)
DefaultAction

获取描述对象默认操作的字符串。 并非所有对象都有默认操作。

Description

获取 Control.ControlAccessibleObject 的说明。

Handle

获取或设置辅助性对象的句柄。

Help

获取有关对象的用途或用法的说明。

KeyboardShortcut

获取辅助性对象的快捷键或访问键。

Name

获取或设置可访问对象名称。

Owner

获取辅助性对象的所有者。

Parent

获取辅助性对象的父级。

Role

获取此辅助性对象的角色。

State

获取此辅助性对象的状态。

(继承自 AccessibleObject)
Value

获取或设置辅助性对象的值。

(继承自 AccessibleObject)

方法

CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。

(继承自 MarshalByRefObject)
DoDefaultAction()

执行与该辅助性对象相关的默认操作。

(继承自 AccessibleObject)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetChild(Int32)

检索与指定索引对应的可访问子级。

(继承自 AccessibleObject)
GetChildCount()

检索属于可访问对象的子级的个数。

(继承自 AccessibleObject)
GetFocused()

检索具有键盘焦点的对象。

(继承自 AccessibleObject)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetHelpTopic(String)

获取帮助主题标识符及与该辅助性对象相关的帮助文件的路径。

GetLifetimeService()
已过时。

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetSelected()

检索当前选定的子级。

(继承自 AccessibleObject)
GetType()

获取当前实例的 Type

(继承自 Object)
HitTest(Int32, Int32)

检索位于指定屏幕坐标的子对象。

(继承自 AccessibleObject)
InitializeLifetimeService()
已过时。

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
Navigate(AccessibleNavigation)

定位到另一个辅助性对象。

(继承自 AccessibleObject)
NotifyClients(AccessibleEvents)

通知指定的 AccessibleEvents 的辅助功能客户端应用程序。

NotifyClients(AccessibleEvents, Int32)

就指定子控件的指定 AccessibleEvents 通知辅助功能客户端应用程序。

NotifyClients(AccessibleEvents, Int32, Int32)

就指定的子控件的指定 AccessibleEvents 通知辅助功能客户端应用程序,给定 AccessibleObject 的标识。

RaiseAutomationNotification(AutomationNotificationKind, AutomationNotificationProcessing, String)

引发 UI 自动化通知事件。

(继承自 AccessibleObject)
RaiseLiveRegionChanged()

引发 LiveRegionChanged UI 自动化事件。

RaiseLiveRegionChanged()

引发 LiveRegionChanged UI 自动化事件。

(继承自 AccessibleObject)
Select(AccessibleSelection)

修改选择内容或移动辅助性对象的键盘焦点。

(继承自 AccessibleObject)
ToString()

返回表示当前对象的字符串。

UseStdAccessibleObjects(IntPtr)

根据对象的句柄,将一个对象与 AccessibleObject 的一个实例关联起来。

(继承自 AccessibleObject)
UseStdAccessibleObjects(IntPtr, Int32)

根据对象的句柄和对象 ID,将一个对象与 AccessibleObject 的一个实例关联起来。

(继承自 AccessibleObject)

显式接口实现

IAccessible.accChildCount

获取属于该对象的子接口的数量。 有关此成员的说明,请参见 accChildCount

(继承自 AccessibleObject)
IAccessible.accDoDefaultAction(Object)

执行指定对象的默认操作。 并非所有对象都有默认操作。 有关此成员的说明,请参见 accDoDefaultAction(Object)

(继承自 AccessibleObject)
IAccessible.accFocus

获取具有键盘焦点的对象。 有关此成员的说明,请参见 accFocus

(继承自 AccessibleObject)
IAccessible.accHitTest(Int32, Int32)

在指定的屏幕坐标位置获取子对象。 有关此成员的说明,请参见 accHitTest(Int32, Int32)

(继承自 AccessibleObject)
IAccessible.accLocation(Int32, Int32, Int32, Int32, Object)

获取对象的当前屏幕位置。 有关此成员的说明,请参见 accLocation(Int32, Int32, Int32, Int32, Object)

(继承自 AccessibleObject)
IAccessible.accNavigate(Int32, Object)

相对于当前对象定位到一个辅助性对象。 有关此成员的说明,请参见 accNavigate(Int32, Object)

(继承自 AccessibleObject)
IAccessible.accParent

获取该对象的父辅助性对象。 有关此成员的说明,请参见 accParent

(继承自 AccessibleObject)
IAccessible.accSelect(Int32, Object)

修改选择内容或移动辅助性对象的键盘焦点。 有关此成员的说明,请参见 accSelect(Int32, Object)

(继承自 AccessibleObject)
IAccessible.accSelection

获取辅助性对象的选定子对象。 有关此成员的说明,请参见 accSelection

(继承自 AccessibleObject)
IReflect.GetField(String, BindingFlags)

获取与指定字段和绑定标志对应的 FieldInfo 对象。 有关此成员的说明,请参见 GetField(String, BindingFlags)

(继承自 AccessibleObject)
IReflect.GetFields(BindingFlags)

获取与当前类的所有字段对应的 FieldInfo 对象的数组。 有关此成员的说明,请参见 GetFields(BindingFlags)

(继承自 AccessibleObject)
IReflect.GetMember(String, BindingFlags)

获取 MemberInfo 对象数组,这些对象对应于所有公共成员或与指定的名称匹配的所有成员。 有关此成员的说明,请参见 GetMember(String, BindingFlags)

(继承自 AccessibleObject)
IReflect.GetMembers(BindingFlags)

获取 MemberInfo 对象数组,这些对象对应于所有公共成员或者当前类的所有成员。 有关此成员的说明,请参见 GetMembers(BindingFlags)

(继承自 AccessibleObject)
IReflect.GetMethod(String, BindingFlags)

在指定的搜索约束下获取与指定方法对应的 MethodInfo 对象。 有关此成员的说明,请参见 GetMethod(String, BindingFlags)

(继承自 AccessibleObject)
IReflect.GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

获取与指定方法对应的 MethodInfo 对象(使用类型数组从重载方法中进行选择)。 有关此成员的说明,请参见 GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

(继承自 AccessibleObject)
IReflect.GetMethods(BindingFlags)

获取 MethodInfo 对象的数组,其中包含了所有公共方法或当前类的所有方法。 有关此成员的说明,请参见 GetMethods(BindingFlags)

(继承自 AccessibleObject)
IReflect.GetProperties(BindingFlags)

获取 PropertyInfo 对象数组,这些对象对应于所有公共属性或当前类的所有属性。 有关此成员的说明,请参见 GetProperties(BindingFlags)

(继承自 AccessibleObject)
IReflect.GetProperty(String, BindingFlags)

在指定的搜索约束下获取与指定属性对应的 PropertyInfo 对象。 有关此成员的说明,请参见 GetProperty(String, BindingFlags)

(继承自 AccessibleObject)
IReflect.GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

在指定的搜索约束下获取与指定属性对应的 PropertyInfo 对象。 有关此成员的说明,请参见 GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

(继承自 AccessibleObject)
IReflect.InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

调用指定的成员。 有关此成员的说明,请参见 InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

(继承自 AccessibleObject)
IReflect.UnderlyingSystemType

获取表示 IReflect 对象的基础类型。 有关此成员的说明,请参见 UnderlyingSystemType

(继承自 AccessibleObject)

适用于

另请参阅