?? dlgexplain.cpp
字號:
// DlgExplain.cpp : implementation file
//
#include "stdafx.h"
#include "CodeProject.h"
#include "DlgExplain.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgExplain dialog
CDlgExplain::CDlgExplain(CWnd* pParent /*=NULL*/)
: CDialog(CDlgExplain::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgExplain)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgExplain::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgExplain)
DDX_Control(pDX, IDC_STATIC_1, m_static);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgExplain, CDialog)
//{{AFX_MSG_MAP(CDlgExplain)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgExplain message handlers
BOOL CDlgExplain::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
CString strTemp;
strTemp = _T(" 本程序支持多線程從www.codeproject.com下載資源。")
_T("如果是教育網用戶,必須采用代理。公網則無此限制。 ")
_T(" 2003/11/12 ");
m_static.SetWindowText(strTemp);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -