当其属性“ClosedDisplayMode”设置为“Compact”时,我想增加命令栏的高度。我什至通过编辑默认样式来尝试它,但我无法解决它。请帮我。我添加了命令栏的图像以调整大小
问问题
1200 次
2 回答
2
你的问题和它的标题是两个不同的东西,如果你想增加命令栏的高度,那么按照这个:
<Application.Resources>
<x:Double x:Key="AppBarThemeCompactHeight">80</x:Double>
</Application.Resources>
如上一个答案所示,但如果您只想在应用程序处于紧凑模式时增加命令栏的高度,那么您必须使用如下所示的视觉状态:
<VisualStateManager.VisualStateGroups>
<VisualStateGroup>
<VisualState x:Name="Normal">
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="900"/>
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Value="40" Target="{Themeresource AppBarThemeCompactHeight}"/>
</VisualState.Setters>
</VisualState>
<VisualState x:Name="Mobile">
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="0"/>
</VisualState.StateTriggers>
<VisualState.Setters>
<Setter Value="80" Target="{Themeresource AppBarThemeCompactHeight}"/>
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
于 2017-01-25T10:44:46.277 回答
0
在您的 App.xaml 页面中添加以下资源
<Application.Resources>
<x:Double x:Key="AppBarThemeCompactHeight">80</x:Double>
</Application.Resources>
现在高度将增加。默认高度为 48,您可以根据需要更改
于 2017-01-25T04:57:32.553 回答