我试图构建一个多线游戏, 在那里我有一个单独的线条 用于在不是主线的窗体上画画。 这让我们看到一些安全线技术, 我读过很多艺术, 但我不太确定我理解得是否正确。
我的问题是,我有一个结构 每个数据对象 都在表格上自我画画 所以我不知道如何执行它。
这是我工作单线代码的片段:
public partial class Form1 : Form
{
GameEngine Engine;
public Form1()
{
InitializeComponent();
Engine = new GameEngine();
时 时
protected override void OnPaint(PaintEventArgs e)
{
Engine.Draw(e.Graphics);
时 时
时 时
class GameEngine
{
Maze Map;
List<Player> Players;
public void Draw(Graphics graphics)
{
Map.Draw(graphics);
foreach (var p in Players)
{
p.Draw(graphics);
时 时
时 时
时 时
所以请大家给我一个提示或链接 与好的文章 帮助我学习如何分开 画在另一条线上?
[编辑]
I managed to implement what I intended to do and this is how I coded it
protected override void OnPaint(PaintEventArgs e)
{
formGraphics = e.Graphics;
DisplayThread = new Thread(new ThreadStart(Draw));
DisplayThread.Start();
时 时
private void Draw()
{
if (this.InvokeRequired)
{
this.Invoke(new DrawDelegate(this.Draw));
时 时
else
{
Engine.Draw(formGraphics);
时 时
时 时
但我有一个参数例外:参数无效
请指出代码中的错误