-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAboutDlg.h
43 lines (30 loc) · 843 Bytes
/
AboutDlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// aboutdlg.h : interface of the CAboutDlg class
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "resource.h"
#include <AtlApp.h>
#include <AtlWin.h>
#include <atlcrack.h>
#include <AtlCtrls.h>
#include <atlmisc.h>
#include <atlctrlx.h>
class CAboutDlg :
public CPropertyPageImpl<CAboutDlg>
//public CWinDataExchange<CAboutDlg>
{
public:
CAboutDlg();
enum { IDD = IDD_ABOUTBOX };
BEGIN_MSG_MAP(CAboutDlg)
MSG_WM_INITDIALOG(OnInitDialog)
CHAIN_MSG_MAP(CPropertyPageImpl<CAboutDlg>)
END_MSG_MAP()
// Message handlers
BOOL OnInitDialog ( HWND hwndFocus, LPARAM lParam );
// Property page notification handlers
int OnApply();
private:
CHyperLink m_hlBlunck;
void CenterHyperLinkLabel(CHyperLink& hl);
};