Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Monogame と C# を使用してゲームを開発しています。フルスクリーンで起動するメニュー用の wpf アプリケーションがあります。メニューの再生をクリックすると、Monogame プロジェクトに移動します。wpf メニューのように、Monogame ソリューションを全画面表示で開始するにはどうすればよいですか?
IsFullscreenプロパティを に設定できますtrue。
IsFullscreen
true
//you likely already have this line (or similar) graphics = new GraphicsDeviceManager(this); //set the GraphicsDeviceManager's fullscreen property graphics.IsFullScreen = true;