グリッド付きの Windows ストア アプリ BottomAppBar があります。何らかの理由で、AppBar には、私が望まない左右の余白があります。これはメトロ アプリのバグですか、それとも以下のコードにいくつかの設定がありません。
<common:LayoutAwarePage.BottomAppBar>
<AppBar>
<AppBar.Background>
<SolidColorBrush Color="Black" Opacity="0"/>
</AppBar.Background>
<Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
<Grid.Background>
<SolidColorBrush Color="Black" Opacity="0.7"/>
</Grid.Background>
<Button Content="Hello"/>
</Grid>
</AppBar>
</common:LayoutAwarePage.BottomAppBar>
アプリを実行すると、左右の一部の領域が AppBar(または Grid) によってカバーされていないことがわかります。なんで?