How do i resize the monogame window inside an xaml page?

:thumbsup: Thanks! :thumbsup:

For anyone else, put this in Update:

    if (graphics.PreferredBackBufferWidth != <width> || graphics.PreferredBackBufferHeight != <height>)
    {
        graphics.PreferredBackBufferWidth = <width>;
        graphics.PreferredBackBufferHeight = <height>;
        graphics.ApplyChanges();
    }

2 Likes