我想为app.xaml中的每个ShellContent
元素应用一个通用样式。
我的问题是在我的TargetType
中看不到任何ShellContent
属性
AppShell.xaml
<ShellContent Title="TITLE1"
ContentTemplate="{DataTemplate local:Page1}"
Route="Route1"
Icon="Icon1" />
<ShellContent Title="TITLE2"
ContentTemplate="{DataTemplate local:Page2}"
Route="Route2"
Icon="Icon2" />
我想在我的App.xaml
的东西在这种风格
<Style TargetType="ShellContent">
<Setter Property="Title" Value="{StaticResource Black}" />
</Style>
1条答案
按热度按时间polhcujo1#
在合并到
App.xaml
中的Styles.xaml
中,查找并更改应用于Shell
的样式:这将改变 shell 内容的标题的颜色,在标签栏(在Android上,但不是在Windows上- bug?),在每个页面上。
遗憾的是,我尚未找到任何方法来变更图标列的性质。
不幸的是,我还没有找到任何方法来改变使用的字体。