如何在调试过程中可视化 Visual Studio 2010 中 Graphics 变量的内容?

发布于 2024-11-16 15:57:28 字数 291 浏览 3 评论 0原文

我正在为我的应用程序开发渲染引擎,需要在调试会话期间可视化 Graphics 对象。 我查看了 VS2010 的图像可视化工具,例如 thisthis,但它们仅可视化图像对象,而我需要图形。这里有什么解决方案吗?

问候, 亚历山大.

I am working on a rendering engine for my application and need to visualize the Graphics object during the debug session.
I looked at Image Visualizers for VS2010, like this or this, but they visualize only the Image objects, whereas I need the Graphics. What could be a solution here?

Regards,
Alexander.

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

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

发布评论

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

评论(1

残月升风 2024-11-23 15:57:28

我终于自己弄清楚了。

要在 VS2010 中启用 Graphics 变量的可视化,请执行以下操作:

  1. 代码项目页面(使用预编译的DLL版本)。
  2. 将 DLL 提取到您拥有完全权限的位置。
  3. 右键单击 DLL,然后按右下角第一个选项卡上的“取消阻止”按钮。单击“应用”,然后单击“确定”关闭属性窗口。
  4. 将 DLL 复制到以下位置:

    C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\Visualizers

    -或-

    C:\Program Files\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\Visualizers
    取决于您的系统架构。

  5. 您不必重新启动 VS2010,只需运行调试会话,当您将鼠标光标悬停在变量上时,您会在变量类型名称的左侧看到一个小放大镜标志。单击此标志,您将看到在新窗口中打开 Graphics 对象的内容。

  6. 享受!

I finally figured it out on my own.

To enable the visualisation of Graphics variables in VS2010 do the following:

  1. Download the Graphics Debugger Visualizer from this Code Project page (use the pre-compiled DLL version).
  2. Extract the DLL to the location where you have full rights.
  3. Right-click the DLL and press "Unblock" button on the first tab, in the right bottom corner. Click "Apply" and then "OK" to close the Properties Window.
  4. Copy the DLL to the following location:

    C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\Visualizers

    -or-

    C:\Program Files\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\Visualizers
    depending upon your system architecture.

  5. You don't have to restart VS2010, just run a debugging session and you'll see a small magnifying glass sign just to the left of the variable type name when you hover with you mouse cursor over your variable. Click this sign and you'll see the content of your Graphics object opened in a new window.

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