You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
498 B
C++

#pragma once
#include "MyDlgView.h"
#include "afxdtctl.h"
class CDlgChildEventLog : public CMyDlgView
{
DECLARE_DYNAMIC(CDlgChildEventLog)
public:
CDlgChildEventLog(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgChildEventLog();
virtual void OnViewOpen();//响应view 打开的时候
// 对话框数据
enum { IDD = IDD_CHILD_EVENT_LOG };
private:
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
virtual BOOL OnInitDialog();
DECLARE_MESSAGE_MAP()
public:
};