XNA:获取屏幕的宽度和高度
我如何获得XNA的整个屏幕的宽度和高度?
这似乎是(只是自己search“xna屏幕宽度高度”):
GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width
经验上,我发现在XNA 4.0中我需要使用
GraphicsDevice.Viewport.Width GraphicsDevice.Viewport.Height
当我运行窗口模式,我发现
GraphicsDevice.DisplayMode.Width GraphicsDevice.DisplayMode.Height
给我整个屏幕的分辨率。
希望这可以帮助别人。