显示不起作用

时间:2015-01-25 18:26:31

标签: c# winforms events system.graphics

public void GridCreate()
    {
        Graphics g = pictureBox1.CreateGraphics();
        SolidBrush brushBlack = new SolidBrush(Color.Black);
        Rectangle[,] block = new Rectangle[16, 16];

        for (int i = 0; i <= block.GetLength(0) - 1; i++)
        {
            for (int n = 0; n <= block.GetLength(0) - 1; n++)
            {
                block[n, i] = new Rectangle(i * blockSize, n * blockSize, 20, 20);
                g.FillRectangle(brushBlack, block[n, i]);
            }
        }
        data.block = block;
    } 
private void Form1_Shown(object sender, EventArgs e)
        {
            GridCreate();
        }

我正在尝试使用PictureBox在WindowsForms中创建一个网格,但相关代码无法正常工作。这个data.block = block;部分有效,但此g.FillRectangle(brushBlack, block[n, i]);根本不起作用。我认为问题出在Form1_Shown事件中,因为:

private void Form1_Click(object sender, EventArgs e)
    {
        GridCreate();
    }

执行得非常好。

覆盖protected override void OnShown(EventArgs e)会得到与Form1_Shown相同的结果。

1 个答案:

答案 0 :(得分:4)

问题是CreateGraphics(),这是一个临时曲面,当PictureBox刷新时会被删除。

只需创建一次网格,然后在Paint()事件中绘制数据:

    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);

        GridCreate();
        pictureBox1.Paint += pictureBox1_Paint;
    }

    private void GridCreate()
    {
        Rectangle[,] block = new Rectangle[16, 16];
        for (int i = 0; i < block.GetLength(1); i++) // this is the 2nd dimension, so GetLength(1)
        {
            for (int n = 0; n < block.GetLength(0); n++) // this is the 1st dimension, so GetLength(0)
            {
                block[n, i] = new Rectangle(i * blockSize, n * blockSize, 20, 20);
            }
        }
        data.block = block;
    }

    void pictureBox1_Paint(object sender, PaintEventArgs e)
    {
        Graphics g = e.Graphics; // use the SUPPLIED graphics, NOT CreateGraphis()!
        for (int i = 0; i < data.block.GetLength(1); i++) // this is the 2nd dimension, so GetLength(1)
        {
            for (int n = 0; n < data.block.GetLength(0); n++) // this is the 1st dimension, so GetLength(0)
            {
                g.FillRectangle(Brushes.Black, data.block[n, i]);
            }
        }
    }