English 中文(简体)
以单独的线索在窗体上绘制
原标题:Draw on a form by a separate thread

我试图构建一个多线游戏, 在那里我有一个单独的线条 用于在不是主线的窗体上画画。 这让我们看到一些安全线技术, 我读过很多艺术, 但我不太确定我理解得是否正确。

我的问题是,我有一个结构 每个数据对象 都在表格上自我画画 所以我不知道如何执行它。

这是我工作单线代码的片段:

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);
        时 时
    时 时

但我有一个参数例外:参数无效

请指出代码中的错误

最佳回答

我认为你需要绘制一个位图,然后在“笔画方法”中将位图绘制到窗口。我稍后将演示。

正如汉斯指出的,在“笔画方法”中,你正在设置

formGraphics = e.Graphics;

但是在方法的结尾 e. Graphics 被处理, 所以你不能再使用它了, 如果你的代码是

Engine.Draw(formGraphics);

你会得到一个例外。

所以基本上你需要一个全球性的

Bitmap buffer = new Bitmap(this.Width, this.Height)

在您的同步线线索中您会引用您的绘图到您可以使用的 Bitmap

Graphics g=Graphics.FromBitmap(buffer);//

要获得图形对象, 请记住

g.Dispose()

或包在包里,

using (Graphics g=Graphics.FromBitmap(buffer))
{
//do something here

时 时

我要玩一玩,看看能不能给你找个工作样本

EDIT Here s your working sample. I started a new form and tossed a button on it. I changed the mainform backgroundimagelayout to none.

我认为你需要使用 net 4. 0 或更好, 如果不使用这个, 让我知道我可以改变它 来匹配你的版本...

//you need this line to use the tasks
using System.Threading.Tasks;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    时 时

    public void Draw()
    {
        Bitmap buffer;
        buffer = new Bitmap(this.Width, this.Height);
        //start an async task
        Task.Factory.StartNew( () =>
        {
                using (Graphics g =Graphics.FromImage(buffer))
                {
                    g.DrawRectangle(Pens.Red, 0, 0, 200, 400);
                    //do your drawing routines here
                时 时
            //invoke an action against the main thread to draw the buffer to the background image of the main form.
            this.Invoke( new Action(() =>
            {
                    this.BackgroundImage = buffer;
            时 时));
        时 时);

    时 时

    private void button1_Click(object sender, EventArgs e)
    {
        //clicking this button starts the async draw method
        Draw();
    时 时

时 时

时 时

问题回答

暂无回答




相关问题
Bring window to foreground after Mutex fails

I was wondering if someone can tell me what would be the best way to bring my application to the foreground if a mutex was not able to be created for a new instance. E.g.: Application X is running ...

How to start WinForm app minimized to tray?

I ve successfully created an app that minimizes to the tray using a NotifyIcon. When the form is manually closed it is successfully hidden from the desktop, taskbar, and alt-tab. The problem occurs ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

Handle DataTable.DataRow cell change event

I have a DataTable that has several DataColumns and DataRow. Now i would like to handle an event when cell of this DataRow is changed. How to do this in c#?

Apparent Memory Leak in DataGridView

How do you force a DataGridView to release its reference to a bound DataSet? We have a rather large dataset being displayed in a DataGridView and noticed that resources were not being freed after the ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

WPF-XAML window in Winforms Application

I have a Winforms application coded in VS C# 2008 and want to insert a WPF window into the window pane of Winforms application. Could you explain me how this is done.

热门标签