c# - wpf Disable Tabstop globally -


i can not find way globally disable tabstop every element created or created inside window... tab navigation work elements write in keyboardnavigation.tabstop="true". there way this?

you can put in application's startup event:

control.istabstopproperty.overridemetadata(     typeof(control),     new frameworkpropertymetadata(false)); 

it changes default value of istabstop property false.


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -