CAllToolSetupSheet::CAllToolSetupSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CMySheet(nIDCaption, pParentWnd, iSelectPage)
{
	LastMoveX=LastMoveY=100;
	LastSizeX=LastSizeY=500;
	AddControlPages();
}
CAllToolSetupSheet::CAllToolSetupSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CMySheet(pszCaption, pParentWnd, iSelectPage)
{
	//{{AFX_DATA_INIT(CToolFile)
	//}}AFX_DATA_INIT
	LastMoveX=LastMoveY=100;
	LastSizeX=LastSizeY=500;
	AddControlPages();
}
Exemple #3
0
Sheet::Sheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
    AddControlPages() ;
}
Exemple #4
0
Sheet::Sheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
    AddControlPages() ;
}
BOOL CAllToolSetupSheet::Create(CWnd* pParentWnd , DWORD dwStyle , DWORD dwExStyle)
{
	if (AddControlPages()) return false;
	return CMySheet::Create(pParentWnd, dwStyle, dwExStyle);
}