运行 XNA 游戏时在 Visual Studio 中观看控制台输出面板
我是视觉工作室新手,目前使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在调试模式下,只需转到查看->输出即可再次显示它
Whilst in Debug mode, simply show it again by going to View->Output
2 件事:
我在 xna4.0 中输出我的调试内容
System.Diagnostic.Debug.WriteLine("stuff");
要查看输出,只需转到
View ->;输出
或Alt+2
2 things:
I output my debug stuff in xna4.0 with
System.Diagnostic.Debug.WriteLine("stuff");
To view output just go to
View -> Output
orAlt+2
如果您通过搜索找到此问题,并且在“查看”菜单下没有看到输出窗口,则很可能是因为您正在“基本设置”下查看 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:
If you want to get out of basic settings, you can change as well:
And then you will be able to access the Output Window as described in the other answers.