简体   繁体   中英

How can I get the accessible name using win32 from c#?

How can I get the accessible name using win32 from c#? (the accessible name was set using the standard win form designer)

You Must use the Windows Automation API ( sounds strange for accesibility). Call

STDAPI AccessibleObjectFromWindow(
  __in   HWND hwnd,
  __in   DWORD dwObjectID,
  __in   REFIID riid,
  __out  void **ppvObject
);

with the REFIID IAccessible. Cast ppvObject into IAccessible and read the member get_accName.

Windows Accessible API on MSDN

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM