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

📄 aboutdlg.cpp

📁 利用Windows API来计算MD5的MFC例程.计算MD5时主要用到了CryptAcquireContext、CryptCreateHash两个API
💻 CPP
字号:
//*****************************************************************************
// FILE: AboutDlg.cpp
// DESC: Implementation of About dialog box.
//
// By Giovanni Dicanio <giovanni.dicanio@gmail.com>
// 2008, September 26th
//*****************************************************************************


//=============================================================================
//                              INCLUDES
//=============================================================================

#include "stdafx.h"
#include "resource.h"
#include "AboutDlg.h"



//=============================================================================
//                          LOCAL MODULE DEFINITIONS
//=============================================================================

#ifdef _DEBUG
#define new DEBUG_NEW
#endif



//=============================================================================
//                          METHOD IMPLEMENTATIONS
//=============================================================================

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


void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialog::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_EMAIL, m_wndEmailLink);
}


BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()


BOOL CAboutDlg::OnInitDialog()
{
    CDialog::OnInitDialog();

    m_wndEmailLink.SetURL(_T("mailto:giovanni.dicanio@gmail.com"));

    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 + -