このコードを使用して、タイトル バーの表示と非表示を切り替え、タスク バーを削除しています。
public void EnterFullScreenMode()
{
this.WindowStyle = System.Windows.WindowStyle.None;
this.WindowState = System.Windows.WindowState.Maximized;
IsFullScreen = true;
}
public void ExitFullScreenMode()
{
this.WindowStyle = System.Windows.WindowStyle.SingleBorderWindow;
this.WindowState = System.Windows.WindowState.Normal;
IsFullScreen = false;
}
タスクバーの表示\非表示は完璧に機能し、タイトルバーの非表示も機能しますが、タイトルバーの表示が機能せず、「フルスクリーン」モードを終了したいのですが、タイトルバーが非表示になっています。
何が問題になる可能性がありますか?