既存のタイトルバー非表示
ExtendViewIntoTitleBarをtrueするとタイトルバーが非表示になります。
App.xaml.csにWindows.ApplicationModel.Core追加します。
using Windows.ApplicationModel.Core;
App.xaml.csにコード内にOnLaunched()があるので、1行追加
protected override void OnLaunched(LaunchActivatedEventArgs e) { //下記の1行追加 CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true; Frame rootFrame = Window.Current.Content as Frame;
