forked from leixiaohua1020/VideoEye
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDfanalysispic.h
More file actions
44 lines (33 loc) · 785 Bytes
/
Dfanalysispic.h
File metadata and controls
44 lines (33 loc) · 785 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
39
40
41
42
43
44
/*
*
*
* VideoEye
*
* 雷霄骅 Lei Xiaohua
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
*/
#pragma once
#include "Dfanalysis.h"
// Dfanalysispic 对话框
class Dfanalysis;
class Dfanalysispic : public CDialogEx
{
DECLARE_DYNAMIC(Dfanalysispic)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
Dfanalysispic(CWnd* pParent = NULL); // 标准构造函数
virtual ~Dfanalysispic();
// 对话框数据
enum { IDD = IDD_DFANALYSIS_PIC };
virtual BOOL OnInitDialog();
//当窗口移动的时候,需要重绘,重新调用函数
Dfanalysis *dfanalysisdlg;
afx_msg void OnPaint();
afx_msg void OnMove(int x, int y);
};