12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- // CDeviceView 窗体视图
- class CDeviceView : public CFormView
- {
- DECLARE_DYNCREATE(CDeviceView)
- protected:
- CDeviceView(); // 动态创建所使用的受保护的构造函数
- virtual ~CDeviceView();
- public:
- #ifdef AFX_DESIGN_TIME
- enum { IDD = DLG_DEVICEMANAGER };
- #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:
- virtual void OnInitialUpdate();
- };
|