私のアプリケーションで管理者専用のBottomAppBarを非表示にしようとしています。UWPでBottomAppBarを非表示にする(Windows 10)
私はBottomAppBarを起動すると隠され、マウスを右クリックすると表示されます。今の
は、私は自分のアプリケーションを起動すると、アプリバーが最小化モードで表示され、次のように:ユーザーがそこに気づいていないように
私は、それを完全に隠すように願っています設定ページ/ bottomAppBarです。ここ
とは、私のコードです:
<Page.BottomAppBar>
<AppBar Background="{StaticResource CitiKioskBackgroundBrush}"
IsOpen="False"
IsSticky="False">
<StackPanel Orientation="Horizontal">
<AppBarButton Name="SettingAppBarButton"
Click="SettingAppBarButton_Click"
Icon="Setting"
Label="Settings"
Foreground="White"/>
</StackPanel>
</AppBar>
</Page.BottomAppBar>
Visibilityプロパティを検討してください。 –