我想在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);
}