位图C# - 画一条线

时间:2017-04-03 17:03:02

标签: c# bitmap drawing

我想在c#中画一条线并且不起作用。我的代码有什么问题。感谢。

 private void GraficProfit_Load(object sender, EventArgs e)
    {
        Bitmap b = new Bitmap(1000,1000);
        pictureBox1.Image = b;
        Graphics g = pictureBox1.CreateGraphics();
        g.DrawLine(new Pen(Color.Red, 10), 10, 10, 100, 190);
    }

0 个答案:

没有答案