用另一种形式调用方法C#

时间:2012-11-18 17:58:43

标签: c# windows visual-studio-2010 graphics emulation

我知道这是一个非常常见的主题,我一直在寻找解决方案的时间。我再次在CHIP8模拟器上工作,我正在尝试创建一个单独的表单来处理图形。

我现在有两种形式,Form1和图形。我想做的是在Form1的图形中调用“draw”方法。在Form1中,我有以下代码......

这是我得到的错误:     错误4'System.Windows.Forms.Form'不包含'Draw'的定义,并且没有扩展方法'Draw'接受类型'System.Windows.Forms.Form'的第一个参数可以找到(你错过了吗?使用指令或程序集引用?)

Form graphicsTest = new graphics(); // This is in the initial declaration of Form1
graphicsTest.Draw(screen); // Screen is a [64,32] boolean array representing pixel states

这就是我对“图形”的看法......

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;

namespace WindowsFormsApplication1
{
public partial class graphics : Form // The purpose of this form is to handle the graphics
{
    Graphics dc;
    Rectangle ee = new Rectangle(10, 10, 30, 30); // Size of each pixel
    Pen WhitePen = new Pen(Color.White, 10); // Pen to draw the rectangle object
    Pen BlackPen = new Pen(Color.Black, 10);
    bool[] drawMe;

    public graphics()
    {
        InitializeComponent();
        dc = this.CreateGraphics();
    }

    private void Form2_Load(object sender, EventArgs e)
    {

    }

    public void Draw(bool[] drawme) // This method recieves the array and draws the appropriate Sprites!
    {
        // This is where I will draw the appropriate pixels...   
    }
}
}

同样,我可能会遗漏一些简单的东西,这对我来说都是比较新的,如果我没有发布足够的信息,我会道歉。任何意见都表示赞赏!

1 个答案:

答案 0 :(得分:3)

将变量类型更改为graphics而不是Form

graphics graphicsTest = new graphics(); 
graphicsTest.Draw(screen);

否则只有基类成员可供您使用。

BTW 在C#中使用PascalCase作为类名。