在 MFC 应用程序中重写 IAccessible::get_accName 时出现问题

发布于 2024-11-29 11:26:38 字数 295 浏览 2 评论 0原文

我目前正在开发一个正在进行重大升级的旧版 MFC 应用程序。我们正在改变的事情之一是我们测试的方式。我们想要为应用程序创建 GUI 自动化测试,为此,我们使用 UI 间谍来检查视觉元素,提取自动化名称和 ID 并帮助我们编写测试。然而,不幸的是,许多元素(即树项目、文本框)没有与之关联的自动化名称,我们想添加它们。根据我通过谷歌搜索找到的内容,重写 CWnd::get_accName 应该允许我们将可访问性 API 名称与元素相关联,但是当我重写它时,没有任何变化,并且我看不到新分配的名称。我错过了什么吗?有人可以指出我向 MFC 应用程序添加辅助功能信息的正确方向吗?

I'm currently working on a legacy MFC application undergoing a major upgrade. One of the things we're changing is how we test this. We want to create GUI automation tests for the application, and to that end, we're using UI spy to inspect the visual elements, pull out automation names and IDs and help us write our tests. However, unfortunately, a lot of elements (ie tree items, text boxes) don't have automation names associated with them, and we'd like to add them. From what I've been able to find by googling around, overriding CWnd::get_accName should allow us to associate accessibility API names with the elements, but when I override it, nothing changes and I can't see the newly assigned name. Have I missed something ? Can somebody please point me in the right direction for adding accessibility information to an MFC application ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然 2024-12-06 11:26:38

确保您在 CWnd 派生类构造函数中调用 EnableActiveAccessibility()

Ensure you are calling EnableActiveAccessibility() in the CWnd-derived class constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文