Comment définir une taille personnalisée pour la fenêtre dans Monogame

graphics.PreferredBackBufferWidth = WIDTH;  // set this value to the desired width of your window
graphics.PreferredBackBufferHeight = HEIGHT;   // set this value to the desired height of your window
graphics.ApplyChanges();
Pixel Freak