保持文本可视化工具打开并继续在 Visual Studio 中调试

发布于 2025-01-07 11:12:47 字数 203 浏览 1 评论 0原文

Visual Studio 2008 中有一个很好的工具,称为文本可视化工具,它允许可视化包含某种文本的变量。在我的程序中,这是一个在运行时构建的 OpenGL 着色器程序。然而,文本可视化工具是一个模式窗口,会阻止所有其他操作,包括单步执行程序,直到关闭为止。

有没有办法继续调试程序并保持文本可视化工具打开以便能够观察对文本所做的更改?有没有一些免费的插件可以做到这一点?

There is nice tool in Visual Studio 2008 called text visualizer which allows to visualize variables that contain some kind of text. In my program this is an OpenGL shader program that is being constructed at the run time. However text visualizer is a modal window and blocks all other actions, which includes stepping over the program, until closed.

Is there a way to continue to debug the program and keep the text visualizer open to be able to watch changes made to the text? Is there some free plugin that does that?

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

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

发布评论

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

评论(2

水波映月 2025-01-14 11:12:47

这通常是不可能的,但如果您是可视化工具作者,则有一些可用的选项。如果您可以用 HTML 呈现视图,那么您就可以在用户的​​互联网浏览器中显示它。
或者您可以启动另一个进程并将数据传输到该进程并让它显示在那里:
http://go4answers.webhost4life.com/Example/dialogdebuggervisualizershow-50864.aspx

It is generally not possible, but if you are a visualizer author there are a few options available. If you can render your view in HTML, you can then just show it in users internet browser.
Or you can start another process and transfer the data to that and have it show there:
http://go4answers.webhost4life.com/Example/dialogdebuggervisualizershow-50864.aspx

演出会有结束 2025-01-14 11:12:47

Visual Studio Visualizer 的体系结构要求所有 Visualizer 都是模态窗口,因此答案是否定的。您最好的选择是将文本复制/粘贴到 diff 工具中。

The Visual Studio Visualizer's architecture requires all Visualizers to be Modal windows, so the answer is No. Your best bet is to copy/paste the text into a diff tool.

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