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

📄 aboutbox.cpp

📁 功能: 用鼠标打开/关闭CD-ROM的工具。 动机: 由于写字台空间有限
💻 CPP
字号:
#include "stdafx.h"
#include "resource.h"		// main symbols
#include "Aboutbox.h"

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
    //{{AFX_DATA_INIT(CAboutDlg)
    //}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialog::DoDataExchange(pDX);
    //{{AFX_DATA_MAP(CAboutDlg)
    //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
    //{{AFX_MSG_MAP(CAboutDlg)
        // No message handlers
    //}}AFX_MSG_MAP
END_MESSAGE_MAP()

BOOL CAboutDlg::OnInitDialog()
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	m_MailLink.SubclassDlgItem(IDC_STATIC_MAIL, this);
	m_MailLink.SetURL(_T("mailto:stronghorse@163.net"));
	
	m_HomeLink.SubclassDlgItem(IDC_STATIC_HOME, this);
	m_HomeLink.SetURL(_T("http://stronghorse.yeah.net"));
	
	return TRUE;  // return TRUE  unless you set the focus to a control
}

⌨️ 快捷键说明

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