Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Monogame to write an XNA game for Windows 8 app store. I'm also using a laptop hooked up to an external monitor. Naturally the resolution on my external monitor is much higher than my laptop's screen. When I drag the app from one screen to another the resolution on the view port changes.

In my constructor I'm using

 _graphics = new GraphicsDeviceManager(this);
 _graphics.PreferredBackBufferHeight = 768;
 _graphics.PreferredBackBufferWidth = 1366;

To set my viewport resolution. This makes the app to work fine when the application runs on either monitors, however dragging the app from one monitor to another changes the resolution on the GraphicsDeviceManager. Is there anyway to prevent this change?

share|improve this question
What do you mean, the resolution changes? Does it increase, or is it just the window size that changes? – Nolonar Jan 31 at 21:17
I'm testing one of my old XNA applications right now, on a Notebook with 1600x900 resolution and an external FullHD monitor. I'm dragging the window around, but the resolution doesn't change, only the (physical) size of the window, that's due to the difference in screen resolutions. The only real answer I can give you, is that maybe Monogame has a bug, since it's still in Beta and doesn't really use MS code (not even reverse-engineered). Though I wouldn't bet on that. – Nolonar Jan 31 at 21:32

1 Answer

So I figured it out

First I wrote a method that checks to see if the port resolution on the graphic device has changed

 private bool hasResolutionChanegd()
    {
        if ((GraphicsDevice.Viewport.Width != ScreenManager.Instance.ScreenWidth) || (GraphicsDevice.Viewport.Height != ScreenManager.Instance.ScreenHeight))
        {
            return true;
        }
        else
        {
           return false;
        }

    }

I call this method on every update

if (hasResolutionChanegd())
        {
             Debug.WriteLine("Resolution Change new width= " + GraphicsDevice.Viewport.Width +" new height="+ GraphicsDevice.Viewport.Height);

            _graphics.PreferredBackBufferHeight = 768;
            _graphics.PreferredBackBufferWidth = 1366;
            _graphics.ApplyChanges();
        }

This way every time the resolution changes on the Graphic Device Manager (when the user drags the app from one screen environment to another), the preferred resolution is enforced.

share|improve this answer
2  
Instead of checking for viewport size changes on every update you might want to listen for CoreWindow's SizeChanged event msdn.microsoft.com/en-us/library/windows/apps/… – Denis Jan 31 at 22:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.