downparamsheet.cpp

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

CPP
67
字号
// DownParamSheet.cpp : implementation file
//

#include "stdafx.h"
#include "LeoBlock2004.h"
#include "DownParamSheet.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDownParamSheet

IMPLEMENT_DYNAMIC(CDownParamSheet, CPropertySheet)

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

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

CDownParamSheet::~CDownParamSheet()
{
}


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

/////////////////////////////////////////////////////////////////////////////
// CDownParamSheet message handlers

BOOL CDownParamSheet::OnInitDialog() 
{
	BOOL bResult = CPropertySheet::OnInitDialog();
	
	// TODO: Add your specialized code here
	CWnd *pWnd=GetDlgItem(ID_APPLY_NOW);
	pWnd->ShowWindow(FALSE);
	m_pbuOk=(CButtonXP*)GetDlgItem(IDOK);
	//pbuOk->ModifyStyle(BS_DEFPUSHBUTTON,BS_OWNERDRAW);
	

	
	

	
	return bResult;
}

void CDownParamSheet::PreSubclassWindow() 
{
	// TODO: Add your specialized code here and/or call the base class
	
	CPropertySheet::PreSubclassWindow();
}

⌨️ 快捷键说明

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