Reputation: 19
I am about to start developing an application, which requires accessibility for blind people. It will be a front-end to google calendar for blind people. Can I do this in C#? Does .NET provide accessibility? I want to read the information from screen readers, a software that uses voice to interpret what is written on the screen. Any good suggestions from anyone on where to start? I've only found stuff about web accessibility...
Thank you in advance!
Upvotes: 1
Views: 926
Reputation: 71573
Short answer; yes, Winform and Web controls have Accessibility properties which are reported to accessibility clients like screen readers. You'll need to ensure that all these have proper data specified (there are no meaningful default values given).
Upvotes: 1