码迷,mamicode.com
首页 > Windows程序 > 详细

c# PictureBox 的图像上使用鼠标画矩形框

时间:2016-06-28 23:28:52      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:

   C# 中在图像上画框,通过鼠标来实现主要有四个消息响应函数MouseDown, MouseMove, MouseUp, Paint重绘函数实现。当鼠标键按下时开始画框,鼠标键抬起时画框结束。

Point start; //画框的起始点
Point end,//画框的结束点
bool blnDraw;//判断是否绘制
Rectangel rect;

  鼠标按下响应

private void PictureBox1_MouseDown(object sender, MouseEventArgs e)
{
      start = e.Location;
      Invalidate();
      blnDraw = true;
}

 鼠标移动响应 

 private void PictureBox1_MouseMove(object sender, MouseEventArgs e)
{
    if (blnDraw)
    {
        if (e.Button != MouseButtons.Left)//判断是否按下左键
            return;
        Point tempEndPoint = e.Location; //记录框的位置和大小
        rect.Location = new Point(
        Math.Min(start.X, tempEndPoint.X),
        Math.Min(start.Y, tempEndPoint.Y));
        rect.Size = new Size(
        Math.Abs(start.X - tempEndPoint.X),
        Math.Abs(start.Y - tempEndPoint.Y));
        PictureBox1.Invalidate();
     }
}        

  鼠标键抬起响应

private void PictureBox1_MouseUp(object sender, MouseEventArgs e)
 {
    blnDraw = false; //结束绘制
 }

 重绘响应

private void imageBox1_Paint(object sender, PaintEventArgs e)
{
     if (blnDraw)
     {
         if (imageBox1.Image != null)
         {
             if (rect != null && rect.Width > 0 && rect.Height > 0)
              {
                  e.Graphics.DrawRectangle(new Pen(Color.Red, 3),rect);//重新绘制颜色为红色
               }
          }
      }

}

 注意:在绘制中如果导入的图像的SizeMode为StretchImage时,画框后图像会缩放,导致框有可能不在pictureBox中,需要将PictureBox的FunctionMode 修改为Minimum 便可。

c# PictureBox 的图像上使用鼠标画矩形框

标签:

原文地址:http://www.cnblogs.com/luxiao/p/5625196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!