On the latest UWP Template10 version 1.1.12, the 3 ellipsis dot on the pageHeader are now tab stop.
This was definitely not there on the previous version. How can tab stop be disabled on this please?
The tab stop behavior of the MoreButton
in PageHeader
has been changed in commits on Sep 8, 2016. For more info, please see the history on GitHub.
So in the previous version, MoreButton
's IsTabStop
property is set to False
in PageHeaderButton
style and now in version 1.1.12, it has been set to True
explicitly. If you want to disable the tab stop, you can modify PageHeader
's template and just remove the newly added line: IsTabStop="True"
in MoreButton
. Or you can copy the previous version of PageHeader.xaml and then merge this resource dictionary in App.xaml like:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles/Custom.xaml" />
<ResourceDictionary Source="Styles/PageHeader.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>