UWP NavigationView.HeaderTemplate无法在1903年上运行

时间:2019-12-13 06:53:52

标签: windows xaml uwp

我有以下主要观点

<NavigationView AlwaysShowHeader="True">
    <NavigationView.HeaderTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="Trxto" />
            </StackPanel>
        </DataTemplate>
    </NavigationView.HeaderTemplate>
    <NavigationView.Content>
        <TextBlock Text="Content" />
    </NavigationView.Content>
</NavigationView>

如果我在定位Windows 10 1803时运行此程序,则可以看到标题,但是如果我 将目标版本更改为1903,它不会显示。...

所以,我在这里迷路了,不胜感激

1 个答案:

答案 0 :(得分:1)

  

UWP NavigationView.HeaderTemplate在1903上不起作用

问题在于您仅实现了HeaderTemplate,但尚未设置Header属性。 HeaderTemplate将不会呈现。

NavigationView. <NavigationView AlwaysShowHeader="True" Header="Test">