自定义标题栏behing枢轴标题

时间:2018-10-24 10:13:15

标签: c# xaml uwp uwp-xaml

在1809 Windows 10更新之后,我的标题栏位于数据透视表头的后面时,我一直在运行某些问题。在chrome上,您的标签位于顶部。

如果我在具有1803更新的Windows机器中测试此示例代码,则可以正常工作。但是,如果它在1809年的机器上运行,并且枢轴位于顶部,则无法拖动我的应用程序。

这是我一直在使用的示例: https://github.com/nikomac/CustomTitleBar

我修改了枢轴样式,以便可以到达后面的标题栏。

 <Style x:Key="PivotDefaultStyle"
           TargetType="Pivot">
        <Setter Property="Margin" Value="0" />
        <Setter Property="Padding" Value="0" />
        <Setter Property="IsTabStop" Value="False" />
        <Setter Property="Background" Value="{x:Null}" />
        <Setter Property="ItemsPanel">

...

<ScrollViewer x:Name="ScrollViewer"
              Margin="{TemplateBinding Padding}"
              VerticalContentAlignment="Stretch"
              Background="{x:Null}"
              BringIntoViewOnFocusChange="False"                                              
              HorizontalScrollBarVisibility="Hidden"
              HorizontalSnapPointsAlignment="Center"

...

这些背景属性是我要做的唯一修改,才能在1803年使用。

有什么办法可以调整此样式或进行修复以使其再次起作用?

谢谢。

0 个答案:

没有答案