以下是 CRect::BottomRight 方法的签名:
CPoint BottomRight() const;
使用这个方法,你可以轻松地获取矩形的右下角坐标。以下是一个简单的示例:
CRect myRect(10, 20, 50, 70);
CPoint bottomRight = myRect.BottomRight();
// 现在,bottomRight 包含 myRect 的右下角坐标
int x = bottomRight.x; // 右下角 x 坐标
int y = bottomRight.y; // 右下角 y 坐标
在上述代码中,BottomRight 方法返回 CPoint 对象,该对象包含了矩形的右下角坐标。你可以通过访问 x 和 y 成员来获取具体的坐标值。
转载请注明出处:http://www.pingtaimeng.com/article/detail/22041/MFC/CRect