⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 downprosheet.cpp

📁 模拟迅雷的下载工具软件
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -