]>
Commit | Line | Data |
---|---|---|
7f0064bd A |
1 | #pragma once |
2 | ||
3 | #include "Resource.h" | |
4 | #include "afxwin.h" | |
5 | ||
6 | // CAbout dialog | |
7 | ||
8 | class CAbout : public CDialog | |
9 | { | |
10 | DECLARE_DYNAMIC(CAbout) | |
11 | ||
12 | public: | |
13 | CAbout(CWnd* pParent = NULL); // standard constructor | |
14 | virtual ~CAbout(); | |
15 | ||
16 | // Dialog Data | |
17 | enum { IDD = IDD_ABOUT }; | |
18 | ||
19 | protected: | |
20 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | |
21 | virtual HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); | |
283ee3ff | 22 | virtual BOOL OnInitDialog(); |
7f0064bd A |
23 | DECLARE_MESSAGE_MAP() |
24 | public: | |
25 | CStatic m_componentCtrl; | |
26 | CStatic m_legalCtrl; | |
27 | CBrush m_bkBrush; | |
28 | }; |