Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 MFC 中绘制手的骨架,我从相机获取手和手指坐标数据,我希望它使用 MFC 在子窗口的屏幕上显示(我知道如何在 OpenGL 中执行此操作,但不知道MFC)
有人可以指导我吗?
从所需的子窗口类型派生一个类,例如 CStatic 或 CDialog。为 WM_PAINT 添加消息处理程序。您的 OnPaint 消息处理程序必须像这样开始:
void CGraph::OnPaint() { CPaintDC dc(this); // Use dc.FillSolidRect() and other DC functions to draw }
如果您有要绘制的点数组 dc.Polyline(...) 将连接这些点。