WinUI:如何更改NavigationView.Header背景颜色?
我有一个 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试覆盖
NavigationViewContentBackground
主题资源:Try to override the
NavigationViewContentBackground
theme resource: