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
Post a Comment