我正在做一个绘图工具的小项目。
我用线来画一个多边形,所以我用它CList<CPoint,CPoint> m_Points
来存储每条线的终点。
这是我的代码:
void CDrawToolView::OnLButtonUp(UINT nFlags, CPoint point)
{
.
.
.
CList<CPoint,CPoint> m_Points;
m_Points.AddTail(point);
.
.
.
}
我想将这些点传递给一个对话框。在调用函数中:
void CDrawToolView::OnEditProperty()
{
CPropertyDlg dlg;
dlg.Points = m_Points;
if (dlg.DoModal() == IDOK)
{
m_Points = dlg.Points;
}
}
然后在对话框中,单击确定时,从以下位置读取所有点CList<CPoint,CPoint> Points
:
void CPropertyDlg::OnBnClickedOk()
{
CList<CPoint,CPoint> Points;
Points.AddTail(polypoint);
POSITION pos = Points.GetHeadPosition();
while( pos != NULL )
{
int i = 0;
element = Points.GetNext(pos);
polygon_x[i] = element.x;
polygon_y[i] = element.y;
i ++;
}
}
运行程序时CObject::operator =' : cannot access private member declared in class 'CObject'
,如何解决该问题?
此外,我可以使用这种方法将点传递给对话框吗?