C#中,如何用CreateGraphic()的方式,在picturebox中的自己上传的图里画线。
C#中,如何用CreateGraphic()的方式,在picturebox中的自己上传的图里画线。怎么搞啊,求教育啊...
C#中,如何用CreateGraphic()的方式,在picturebox中的自己上传的图里画线。怎么搞啊,求教育啊
展开
1个回答
展开全部
1)在Form1上布置一个PictureBox,名字为pictureBox1
2)对Form1的Paint事件编程
private void Form1_Paint(object sender, PaintEventArgs e)
{
// 因为这是在Form1的Paint事件中,所以
// Graphics g = e.Graphics得到是与Form1相关联的Graphics
// 要在pictureBox1中画线,就必须取得与pictureBox1相关的
// Graphics
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(Pens.Red, new Point(0, 0), new Point(100, 100));
// 一定释放!否则容易内存泄露
g.Dispose();
}
追问
解决啦,好人一生平安
追答
^_^
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询