Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Windows narrator
posted

Are Windows Forms components (e.g. UltraGrid, Ultra) accessible to Windows Narrator?

If so, could someone tell me what to do to make them work with Windoes Narrator?

Thanks.

Parents
  • 530
    Offline posted

    Hello Vivien,

    You can make the Narrator read our controls by setting UIAutomationForCodedUITestingEnabled property to false.

     

    public Form1()
    {
        InitializeComponent();
    
        UltraControlBase.UIAutomationForCodedUITestingEnabled = false;
    }

    If you have any question with this, please let me know.

    Best regards,
    Yuki Mita
    Technical Consulting Engineer
    Infragistics Inc.
    www.infragistics.com/support

Reply Children