UWP - Template10 pageheader ellipsis tabstop on version 1.1.12
UWP - Template10 pageheader ellipsis tabstop on version 1.1.12
在最新的 UWP Template10 版本 1.1.12 中,pageHeader 上的 3 个省略号点现在是制表位。
这在以前的版本中绝对没有。
请问如何禁用制表位?
PageHeader
中 MoreButton
的制表位行为已在 2016 年 9 月 8 日的提交中更改。有关详细信息,请参阅 history on GitHub。
所以在之前的版本中,MoreButton
的IsTabStop
属性在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中设置为False
,然后在[中合并这个资源字典=28=]App.xaml 喜欢:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles/Custom.xaml" />
<ResourceDictionary Source="Styles/PageHeader.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
在最新的 UWP Template10 版本 1.1.12 中,pageHeader 上的 3 个省略号点现在是制表位。
这在以前的版本中绝对没有。 请问如何禁用制表位?
PageHeader
中 MoreButton
的制表位行为已在 2016 年 9 月 8 日的提交中更改。有关详细信息,请参阅 history on GitHub。
所以在之前的版本中,MoreButton
的IsTabStop
属性在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中设置为False
,然后在[中合并这个资源字典=28=]App.xaml 喜欢:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles/Custom.xaml" />
<ResourceDictionary Source="Styles/PageHeader.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>