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 -

javascript - addthis share facebook and google+ url -

ios - Show keyboard with UITextField in the input accessory view -