WinUI:如何更改NavigationView.Header背景颜色?

发布于 2025-01-09 08:30:32 字数 720 浏览 1 评论 0原文

我有一个 NavigationView 并想更改标题背景颜色:

带箭头的标题背景

我尝试过:

  • generic.xaml 中查找可能要覆盖的样式
  • 使用HeaderTemplate

这是我的代码:

<NavigationView Background="Gray">
    <NavigationView.Header>
        <Border Background="Green">
            <TextBlock Text="Header"/>
        </Border>
    </NavigationView.Header>
    <Border Background="Orange">
        <TextBlock Text="Sweet content"/>
    </Border>
</NavigationView>

I have a NavigationView and would like to change the header background color:

header background with arrow

I have tried:

  • Looking in generic.xaml for likely styles to override
  • Using a HeaderTemplate

Here's my code:

<NavigationView Background="Gray">
    <NavigationView.Header>
        <Border Background="Green">
            <TextBlock Text="Header"/>
        </Border>
    </NavigationView.Header>
    <Border Background="Orange">
        <TextBlock Text="Sweet content"/>
    </Border>
</NavigationView>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

前事休说 2025-01-16 08:30:32

尝试覆盖 NavigationViewContentBackground 主题资源:

<NavigationView Background="Gray">
    <NavigationView.Resources>
        <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Red" />
    </NavigationView.Resources>
    <NavigationView.Header>
        <Border Background="Green">
            <TextBlock Text="Header"/>
        </Border>
    </NavigationView.Header>
    <Border Background="Orange">
        <TextBlock Text="Sweet content"/>
    </Border>
</NavigationView>

Try to override the NavigationViewContentBackground theme resource:

<NavigationView Background="Gray">
    <NavigationView.Resources>
        <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Red" />
    </NavigationView.Resources>
    <NavigationView.Header>
        <Border Background="Green">
            <TextBlock Text="Header"/>
        </Border>
    </NavigationView.Header>
    <Border Background="Orange">
        <TextBlock Text="Sweet content"/>
    </Border>
</NavigationView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文