0

所以这应该很简单,但我看过一些类似的问题,但找不到答案。

我有一个Form1班级和一个Resistor班级。在Form1类内部,我有一个Panel(我将名称更改为Canvas),在Canvas_Paint方法内部,我DrawResistor类中调用该方法,但没有绘制任何东西。

Form1类:

public partial class Form1 : Form
{
    static float lineWidth = 2.0F;
    static float backgroundLineWidth = 2.0F;
    static Pen pen = new Pen(Color.Yellow, lineWidth);
    static Pen backgroundPen = new Pen(Color.LightGray, backgroundLineWidth);
    private bool drawBackground = true;
    private List<Resistor> resistors = new List<Resistor>();                

    public Form1()
    {
        InitializeComponent();
    }

    private void Canvas_Paint(object sender, PaintEventArgs e)
    {
        if (drawBackground)
        {
            Console.WriteLine("Drawing background...");
            Draw_Background(e.Graphics, backgroundPen);
        }

        if (resistors != null)
        {
            foreach (Resistor r in resistors)
            {
                //This does not work.
                r.Draw(e.Graphics);
            }
        }

        //The line below draws the line fine.
        e.Graphics.DrawLine(pen, 0, 0, 100, 100);
    }

    private void Draw_Background(Graphics g, Pen pen)
    {            
        for (int i = 0; i < Canvas.Width; i += 10)
        {
            g.DrawLine(pen, new Point(i, 0), new Point(i, Canvas.Height));          
        }
        for (int j = 0; j < Canvas.Height; j += 10)
        {
            g.DrawLine(pen, new Point(0, j), new Point(Canvas.Width, j));
        }

        drawBackground = false;
    }

    private void AddResistor_Click(object sender, EventArgs e)
    {
        resistors.Add(new Resistor());
        Console.WriteLine("Added a Resistor...");
    }        
}

电阻类:

public class Resistor
{
    static private Point startingPoint;
    static Pen defaultPen;
    private Point[] points;

    public Resistor()
    {
        startingPoint.X = 100;
        startingPoint.Y = 100;

        defaultPen = new Pen(Color.Yellow, 2.0F);

        points = new Point[] {
            new Point( 10,  10),
            new Point( 10, 100),
            new Point(200,  50),
            new Point(250, 300) 
        };

    }

    public void Draw(Graphics g)
    {
        //Is this drawing somewhere else?
        g.DrawLines(defaultPen, points);            
    }
}

我看过这个问题,它建议e.Graphics在这种情况下将对象传递给类中的Draw方法,Resistor但不起作用。

我是 C# 的新手,所以我非常感谢任何帮助。

编辑:如果您想下载并试用, 我将项目放在github上。

编辑: 所以问题是在单击按钮后没有调用面板 Paint 方法。解决方案是在方法Canvas.Invalidate内部添加AddResistor_Click

4

2 回答 2

1

在调试器中运行您的代码并在您的事件处理程序中放置一个断点,您将能够检查您的代码是否真的在尝试绘制一些东西。如果没有,那么您的事件处理程序是否曾经被调用过?你的电阻器列表中有什么吗?如果它正在绘制但您没有看到任何东西,那么您没有使用正确的 Graphics 上下文,或者您没有在控件的可见部分中绘制东西,或者您正在使用后续的绘制代码绘制东西。

于 2013-08-04T18:36:40.463 回答
0

问题是,当单击按钮时,面板的绘制方法没有被调用,因为我坚持认为绘制方法总是被调用。Canvas.Invalidate解决方案是在方法内部添加AddResistor_Click

private void AddResistor_Click(object sender, EventArgs e)
    {
        resistors.Add(new Resistor());
        Console.WriteLine("Added a Resistor...");
        Canvas.Invalidate();
    }
于 2013-08-04T20:56:10.483 回答