请问在.net里面怎么实现在picturebox里面画线啊?我在窗体里面可以实现,但是picturebox里不可以,为什么?
请问在.net里面怎么实现在picturebox里面画线啊?我在窗体里面可以实现,但是picturebox里不可以,为什么?
程序代码:
void PictureBox_Paint(object sender, PaintEventArgs e) { var g = Pb.CreateGraphics(); g.SmoothingMode = SmoothingMode.AntiAlias; g.Clear(Pb.BackColor); g.DrawLine(new Pen(Color.Black, 2f), 0, 0, Pb.Width, Pb.Height); }