XNA 在全屏 -> 窗口转换中丢失标题栏主题
(我认为 Aero 是这个术语)。
当我在窗口模式下启动 XNA 程序时,我会看到在 Win7/Vista 程序中看到的光泽条。
当我设置为全屏然后恢复时,我将有一个纯蓝色的“基本”标题边框。
如何将其主题或风格设置回 Aero 风格?
(I think Aero is the term).
When I start my XNA program in Windowed mode, I have the glossy bar as seen on Win7/Vista programs.
When I set to fullscreen and then revert, I will have a plain blue 'basic' title border.
How can I set the theme or style of this back to the Aero style?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在切换回窗口模式之前调用以下命令,您将获得 Aero 样式,但它需要您引用 System.Windows.Forms。
我不确定这是否是最好的方法,但它确实有效。我在我的 XNA 游戏中使用过它。
作为一个例子,你可以把它挂在你的游戏类上:
祝你好运。
If you call the following before switching back to windowed mode, you will get the Aero style, but it requires you reference System.Windows.Forms.
I'm not certain if that's the best way to do it, but it works. I've used it in my XNA games.
As an example you can hang it off your Game class:
Good luck.
这将有助于:
This will help: