如何计算矩形边之间的距离?

时间:2014-09-24 10:07:50

标签: c# winforms

在这个例子中:

private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
{
    label10.Text = ((n - 1) * 4).ToString();
    _mrect = new Rectangle(Math.Min(RectStartPoint.X, point.X), Math.Min(RectStartPoint.Y, point.Y),
                                Math.Abs(RectStartPoint.X - point.X), Math.Abs(RectStartPoint.Y - point.Y));
}

_mrect is:

X = 125
Y = 144
Width = 250 
Height = 169

我想找到矩形左边缘到右边缘之间的距离。以及上边缘到下边缘之间的距离。

1 个答案:

答案 0 :(得分:1)

请注意!

enter image description here

然后,您的答案是WidthHeight

了解更多信息:http://www.functionx.com/csharp1/winprog/pointsizerect.htm