34 lines
584 B
C++
34 lines
584 B
C++
#pragma once
|
|
|
|
|
|
|
|
// CControlView 窗体视图
|
|
|
|
class CControlView : public CFormView
|
|
{
|
|
DECLARE_DYNCREATE(CControlView)
|
|
|
|
protected:
|
|
CControlView(); // 动态创建所使用的受保护的构造函数
|
|
virtual ~CControlView();
|
|
|
|
public:
|
|
#ifdef AFX_DESIGN_TIME
|
|
enum { IDD = IDD_DIALOG_CONTROL };
|
|
#endif
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
#ifndef _WIN32_WCE
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
#endif
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
};
|
|
|
|
|