c#PictureBox的图像上使⽤⿏标画矩形框
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();
}
}
mousemove是什么键
⿏标键抬起响应
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 便可。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。