关于图形处理的问题

发布于 2024-07-30 01:16:30 字数 73 浏览 4 评论 0原文

我是否需要在 OnPaint 事件中对通过 PaintEventArgs 获取的 Graphics 对象调用 Dispose() ?

Do I need to call Dispose() on a Graphics object obtained through PaintEventArgs in an OnPaint event?

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

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

发布评论

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

评论(2

惯饮孤独 2024-08-06 01:16:30

不,调用层(实际创建图形对象的层)负责这一点。
还要考虑一下,当链上有其他被调用者时,您将处置该对象,而他们将无法使用它。

No, the calling layer (the one who actually created the graphics object) is in charge of that.
Also think about it, when you have other callees on the chain, you will dispose the object and they won't be able to use it.

冷…雨湿花 2024-08-06 01:16:30

一般来说,您不应该处置作为方法参数接收的 Graphic 对象。 但是您应该处理您自己创建的 Graphics 对象(例如使用 CreateGraphics 方法)。

In general, you should not dispose of Graphic objects which you receive as method parameters. But you should dispos of Graphics objects that you've created yourself (for example using the CreateGraphics method).

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