运行 XNA 游戏时在 Visual Studio 中观看控制台输出面板

发布于 2024-12-12 03:58:48 字数 202 浏览 0 评论 0原文

我是视觉工作室新手,目前使用 VS 2010 Express、C# 和 XNA 4.0 开发游戏。

我正在尝试调试我正在开发的一个小游戏,在发生特定事件时使用 Console.WriteLine 调用。不幸的是,当我执行程序时,视觉工作室布局发生变化,输出面板消失,直到程序退出(所以我只能在程序结束后分析输出)。

我想知道是否可以以及如何保持输出面板可见。

I'm a visual studio newbie, currently developing a game using VS 2010 express, C# and XNA 4.0 .

I'm trying to debug a little game I'm developing, using a Console.WriteLine call when a certain event occur. Unfortunately when I execute the program the visual studio layout changes and the output panel disappear until the program exits (so I can analyze the output only after the program ends).

I would like to know if it possible and how, to keep the output panel visible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

红ご颜醉 2024-12-19 03:58:48

在调试模式下,只需转到查看->输出即可再次显示它

Whilst in Debug mode, simply show it again by going to View->Output

从﹋此江山别 2024-12-19 03:58:48

2 件事:

  1. 我在 xna4.0 中输出我的调试内容

    System.Diagnostic.Debug.WriteLine("stuff");

  2. 要查看输出,只需转到 View ->;输出Alt+2

2 things:

  1. I output my debug stuff in xna4.0 with

    System.Diagnostic.Debug.WriteLine("stuff");

  2. To view output just go to View -> Output or Alt+2

春夜浅 2024-12-19 03:58:48

如果您通过搜索找到此问题,并且在“查看”菜单下没有看到输出窗口,则很可能是因为您正在“基本设置”下查看 Visual C# 2010。在基本设置下,您可以找到输出菜单,如下所示:

调试->窗口 ->输出

如果您想退出基本设置,您也可以更改:

工具>设置>专家设置

然后您将能够访问输出窗口,如其他答案中所述。

If you found this question through a search and you do not see the Output Window under the "View" menu, it is most likely because you are viewing Visual C# 2010 under 'Basic Settings.' Under basic settings, you can find the output menu as follows:

Debug -> Windows -> Output

If you want to get out of basic settings, you can change as well:

Tools > Settings > Expert Settings

And then you will be able to access the Output Window as described in the other answers.

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