CDC::GetWindowOrg 是 MFC(Microsoft Foundation Classes)中的一个公共方法,用于获取当前设备上下文(Device Context,简称 DC)的窗口原点的坐标。
CPoint GetWindowOrg() const;

这个方法返回一个 CPoint 对象,其中包含了当前设备上下文的窗口原点的坐标。

使用示例:
CDC dc; // 假设已经创建了一个 CDC 对象
CPoint windowOrg = dc.GetWindowOrg();

int nWindowX = windowOrg.x;
int nWindowY = windowOrg.y;

在这个示例中,windowOrg 包含了当前设备上下文的窗口原点的坐标。你可以使用 x 和 y 成员分别获取水平和垂直方向上的坐标。


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