简体   繁体   中英

UWP - Template10 pageheader ellipsis tabstop on version 1.1.12

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM