downprosheet.cpp

来自「模拟迅雷的下载工具软件」· C++ 代码 · 共 61 行

CPP
61
字号
// DownProSheet.cpp : implementation file
//

#include "stdafx.h"
#include "LeoBlock2004.h"
#include "DownProSheet.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDownProSheet

IMPLEMENT_DYNAMIC(CDownProSheet, CPropertySheet)

CDownProSheet::CDownProSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}

CDownProSheet::CDownProSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
}

CDownProSheet::~CDownProSheet()
{
}


BEGIN_MESSAGE_MAP(CDownProSheet, CPropertySheet)
	//{{AFX_MSG_MAP(CDownProSheet)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDownProSheet message handlers

BOOL CDownProSheet::OnInitDialog() 
{
	BOOL bResult = CPropertySheet::OnInitDialog();
	
	// TODO: Add your specialized code here
	CWnd *pWnd=GetDlgItem(ID_APPLY_NOW);
	pWnd->ShowWindow(FALSE);
	return bResult;
}



BOOL CDownProSheet::PreCreateWindow(CREATESTRUCT& cs) 
{
	// TODO: Add your specialized code here and/or call the base class
	cs.dwExStyle|=WS_EX_PALETTEWINDOW;
	return CPropertySheet::PreCreateWindow(cs);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?