XNA 在全屏 -> 窗口转换中丢失标题栏主题

发布于 2024-11-27 03:49:35 字数 149 浏览 0 评论 0原文

(我认为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

携君以终年 2024-12-04 03:49:35

如果您在切换回窗口模式之前调用以下命令,您将获得 Aero 样式,但它需要您引用 System.Windows.Forms

System.Windows.Forms.Application.EnableVisualStyles();

我不确定这是否是最好的方法,但它确实有效。我在我的 XNA 游戏中使用过它。

作为一个例子,你可以把它挂在你的游戏类上:

public class FooGame : Game
{
    ... 

    private void SetWindow(bool fullscreen)
    {
        if(!fullscreen)
        {
            System.Windows.Forms.Application.EnableVisualStyles();
        }

        this.graphicsDeviceManager.IsFullScreen = fullscreen;
        this.graphicsDeviceManager.ApplyChanges();
    }
}

祝你好运。

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.

System.Windows.Forms.Application.EnableVisualStyles();

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:

public class FooGame : Game
{
    ... 

    private void SetWindow(bool fullscreen)
    {
        if(!fullscreen)
        {
            System.Windows.Forms.Application.EnableVisualStyles();
        }

        this.graphicsDeviceManager.IsFullScreen = fullscreen;
        this.graphicsDeviceManager.ApplyChanges();
    }
}

Good luck.

我不咬妳我踢妳 2024-12-04 03:49:35

这将有助于:

System.Windows.Forms.Application.VisualStyleState = System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled;

This will help:

System.Windows.Forms.Application.VisualStyleState = System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文