使用 System.Drawing.Graphics 时如何防止 InvalidOperationException?

发布于 2024-08-15 16:33:39 字数 221 浏览 6 评论 0原文

我在多线程应用程序中使用 System.Drawing.Graphics.DrawLines(Pen pen, PointF[] points) 方法,但 System.Drawing.Graphics 不是线程之间共享。

为什么它不断抛出System.InvalidOperationException:该对象当前正在其他地方使用

I am using the System.Drawing.Graphics.DrawLines(Pen pen, PointF[] points) method in a multithreaded application, but the System.Drawing.Graphics isn't shared between threads.

Why it keeps throwing the System.InvalidOperationException: The object is currently in use elsewhere ?

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

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

发布评论

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

评论(2

乜一 2024-08-22 16:33:39

简单的回答:不要这样做。仅在 GUI 线程上访问 GUI。

Simple answer: don't do that. Only access the GUI on the GUI thread.

君勿笑 2024-08-22 16:33:39

问题是:我对所有线程使用相同的 System.Drawing.Pen 实例。为了解决这个问题,我必须为每个线程克隆它。

var pens = new Pen[0];
lock (this._pens)
{
    pens = (Pen[])this._pens.Select(a => (Pen) a.Clone()).ToArray();
}

为了解决这个问题连锁都是必不可少的

The problem was: I was using the same System.Drawing.Pen instance for all threads. I had to clone it for every thread in order to solve the problem.

var pens = new Pen[0];
lock (this._pens)
{
    pens = (Pen[])this._pens.Select(a => (Pen) a.Clone()).ToArray();
}

Even the lock is essential in order to solve this problem

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