BasicUI_MonoGame_Windows10_UWP.GamePage.GamePage C# (CSharp) Метод

GamePage() публичный Метод

public GamePage ( ) : System
Результат System
        public GamePage()
        {
            this.InitializeComponent();

            // Create the game.
            var launchArguments = string.Empty;
            _game = MonoGame.Framework.XamlGame<Game1>.Create(launchArguments, Window.Current.CoreWindow, swapChainPanel);

            swapChainPanel.Width = _game.GraphicsDevice.PresentationParameters.BackBufferWidth;
            swapChainPanel.Height = _game.GraphicsDevice.PresentationParameters.BackBufferHeight;
        }
GamePage