c# picturebox上画图

在Form上添加 一个pictureBox,一个button控件

如图所示:c# picturebox上画图

这样我们的绘画面板就弄好了,把pictureBox的dock属性设置为fill,按键为清屏的作用。

 

[csharp] view plaincopyc# picturebox上画图c# picturebox上画图
 
  1. private Point p1, p2;//定义两个点(启点,终点)  
  2. private static bool drawing=false;//设置一个启动标志  
  3. private void pictureBox1_MouseDown(object sender, MouseEventArgs e)  
  4.         {  
  5.                   
  6.               p1 = new Point(e.X, e.Y);  
  7.               p2 = new Point(e.X, e.Y);  
  8.                 drawing = true;  
  9.               
  10.         }  
  11.   
  12. private void pictureBox1_MouseUp(object sender, MouseEventArgs e)  
  13.         {  
  14.             drawing = false;  
  15.         }  
  16. private void pictureBox1_MouseMove(object sender, MouseEventArgs e)  
  17.   
  18.         {  
  19.             
  20.             Graphics g = pictureBox1.CreateGraphics();  
  21.             if(e.Button ==MouseButtons.Left)  
  22.             {  
  23.                 if (drawing)  
  24.                 {  
  25.                     //drawing = true;  
  26.                     Point currentPoint = new Point(e.X, e.Y);  
  27.                     g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;//消除锯齿  
  28.                     g.DrawLine(new Pen(Color.Blue, 2),  p2,currentPoint);  
  29.                       
  30.                     p2.X = currentPoint.X;  
  31.                     p2.Y = currentPoint.Y;  
  32.                 }  
  33.   
  34.             }  
  35.               
  36.         }  
  37. //清屏操作  
  38. private void button1_Click(object sender, EventArgs e)  
  39.         {  
  40.             Graphics g = pictureBox1.CreateGraphics();  
  41.             g.Clear(Color.White);  
  42.         }  



 


c# picturebox上画图