在 MFC(Microsoft Foundation Classes)中,CRect 类具有名为 CenterPoint 的公共方法。CenterPoint 方法返回一个 CPoint 对象,该对象表示矩形的中心点坐标。

以下是 CRect::CenterPoint 方法的签名:
CPoint CenterPoint() const;

使用这个方法,你可以方便地获取矩形的中心点坐标。以下是一个简单的示例:
CRect myRect(10, 20, 50, 70);
CPoint centerPoint = myRect.CenterPoint();

// 现在,centerPoint 包含 myRect 的中心点坐标
int x = centerPoint.x; // 中心点 x 坐标
int y = centerPoint.y; // 中心点 y 坐标

在上述代码中,CenterPoint 方法返回 CPoint 对象,该对象包含了矩形的中心点坐标。你可以通过访问 x 和 y 成员来获取具体的坐标值。这个方法对于在图形界面中定位对象的中心点非常有用。


转载请注明出处:http://www.pingtaimeng.com/article/detail/22042/MFC/CRect