我正在尝试在BottomAppBar中显示图标列表。 XAML Designer中的一切看起来都很好,如下所示:
XAML:
<Page.BottomAppBar>
<CommandBar>
<CommandBar.PrimaryCommands>
<AppBarButton Icon="Back"
Command="{Binding Back}"
IsCompact="False"
Label="X"/>
<AppBarButton Icon="Refresh"
Command="{Binding Refresh}"
IsCompact="False"
Label="X"/>
</CommandBar.PrimaryCommands>
<CommandBar.SecondaryCommands>
<AppBarButton Margin="20 0 20 0">
<AppBarButton.Template>
<ControlTemplate>
<StackPanel Orientation="Horizontal" >
<StackPanel Width="65">
<SymbolIcon Symbol="Cut" Foreground="#F9F9F9"/>
<TextBlock Text="X" HorizontalAlignment="Center" Foreground="#F9F9F9"/>
</StackPanel>
<StackPanel Width="65">
<SymbolIcon Symbol="Cut" Foreground="#F9F9F9"/>
<TextBlock Text="X" HorizontalAlignment="Center" Foreground="#F9F9F9"/>
</StackPanel>
<!--Others-->
</StackPanel>
</ControlTemplate>
</AppBarButton.Template>
</AppBarButton>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>
设计
不幸的是,当我在我的设备Lumia 640上运行代码时,没有任何项目。我的图标列表中只有空白区域。有谁知道我怎么做到这一点?