我正在尝试创建将使用计时器每 500 毫秒重绘一次的图形,但我一直遇到跨线程操作。有人可以告诉我为什么会这样吗?
错误:
Cross-thread operation not valid: Control 'GraphicsBox' accessed from a thread other than the thread it was created on.
我正在使用 WinForms,并在主窗体中有一个名为“GraphicsBox”的 PictureBox:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
namespace NamespaceName
{
public partial class FormName : Form
{
Graphics g;
public FormName()
{
InitializeComponent();
System.Timers.Timer t = new System.Timers.Timer();
t.Interval = 500;
t.Enabled = true;
t.Elapsed += (s, e) => this.GraphicsBox.Invalidate(true);
}
private void FormName_Load(object sender, EventArgs e)
{
this.GraphicsBox.Paint += new PaintEventHandler(OnPaint);
}
protected void OnPaint(object sender, PaintEventArgs e)
{
g = e.Graphics;
//Draw things
}
}
}
有什么方法可以OnPaint
从计时器的“滴答声”(或“经过”)触发我所拥有的事件?我相信这会成功。我要做的就是重绘图形对象,我将更改代码中的内容以使其以不同的方式绘制。