简体   繁体   English

UWP-1.1.12版上的Template10 pageheader省略号tabstop

[英]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. 在最新的UWP Template10版本1.1.12中,pageHeader上的3个省略号点现在是制表位。

在此处输入图片说明

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 . MoreButton中的PageHeader的制表位停止行为已在2016年9月8日的提交中更改。有关更多信息,请参见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 . 因此,在以前的版本中, MoreButtonIsTabStop属性在PageHeaderButton样式中设置为False ,而在现在的1.1.12版本中,它已显式设置为True 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 . 如果您希望禁用制表位,您可以修改PageHeader的模板,只是删除新添加一行: IsTabStop="True"MoreButton Or you can copy the previous version of PageHeader.xaml and then merge this resource dictionary in App.xaml like: 或者,您可以复制PageHeader.xaml的先前版本,然后在App.xaml中合并此资源字典,例如:

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="Styles/Custom.xaml" />
            <ResourceDictionary Source="Styles/PageHeader.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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