how to persist keyboard navigation indicators

  • Thread starter Thread starter Stefan
  • Start date Start date
S

Stefan

I'd like to display the keyboard navigation indicators in my C#
application without the user having to press the Alt key and regardless
of the machines global setting (Hide keyboard navigation indicators
until I use the ALT key)...

Is there a way to programatically turn on/off keyboard navigation
indicators for my app during runtime...

Thanks,
STefan
 
Salam

You can turn off/on the keyboard navigation in your application by
removing/adding the delegates in your appplication, like if you did not want
to get events regarding the Key Press, then release this event
this.KeyDown-=new KeyEventHandler(Form1_KeyDown);


--
ALI RAZA SHAIKH
MCAD.net

www.programmersparadise.cjb.net
alirazashaikh.blogspot.com
 
Back
Top