16,551
社区成员
发帖
与我相关
我的任务
分享
//类实例
CProp2_Point m_prop2_point;
CProp3 m_prop3;
CProp1 m_prop1;
CPropSheet::CPropSheet(int pdatatype,UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
this->AddPage(&m_prop1);
this->AddPage(&m_prop2_line);
this->AddPage(&m_prop3);
}
CPropSheet::CPropSheet(int pdatatype,LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
this->AddPage(&m_prop1);
this->AddPage(&m_prop2_point);
this->AddPage(&m_prop3);
}


