-
Notifications
You must be signed in to change notification settings - Fork 68
/
MasterWindows.h
49 lines (38 loc) · 1.07 KB
/
MasterWindows.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
44
45
46
47
48
49
#pragma once
#include "stdafx.h"
#include "resource.h"
#include "afxwin.h"
class MasterWindows : public CDialogEx
{
DECLARE_DYNAMIC(MasterWindows)
public:
MasterWindows(CWnd* pParent = NULL);
virtual ~MasterWindows();
enum { IDD = IDD_DIALOG1 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
CStatic m_MasterStaticText;
afx_msg void OnBnClickedButton1();
afx_msg void OnDropFiles(HDROP hDropInfo);
CString m_MasterStaticTextStr;
public:
afx_msg void OnBnClickedButton4();
// afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton9();
CBitmap m_bmp; //位图
CBrush m_brush; //画刷
CDC m_dc; //DC对象
private:
void ShowPEInfoData(const CString & FileName);
BOOL NewSection();
public:
afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton2();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
afx_msg void OnPaint();
CStatic m_bitmapZionloab;
DWORD m_dwOldOEP = 0;
};