-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSettingDlg.h
More file actions
38 lines (30 loc) · 803 Bytes
/
Copy pathSettingDlg.h
File metadata and controls
38 lines (30 loc) · 803 Bytes
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
#pragma once
#include "resource.h"
#include <dwmapi.h>
#pragma comment(lib, "dwmapi.lib")
#define TRANSPARENT_COLOR RGB (200, 201, 202)
// CSettingDlg 对话框
class CSettingDlg : public CDialogEx
{
DECLARE_DYNAMIC(CSettingDlg)
private:
CMFCButton m_btnOK;
CMFCButton m_btnCancel;
//HACCEL m_hAccel;
public:
CSettingDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~CSettingDlg();
// 对话框数据
enum { IDD = IDD_DLG_SETTING };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
//BOOL PreTranslateMessage(MSG* pMsg);
DECLARE_MESSAGE_MAP()
public:
UINT m_length;//仿真时长
UINT m_times;//仿真次数
int m_filters;//仿真算法
int m_figure;//所画图形
// afx_msg void OnBnClickedOk();
virtual BOOL OnInitDialog();
};