property.h

来自「《Visual C++编程技巧典型案例解析:基础与应用篇(下)(含1CD-ROM」· C头文件 代码 · 共 44 行

H
44
字号
/////////////////////////////////////////////////////////////////////////////
// CZDDeskProperties dialog

class CZDDeskFrame;

class CZDDeskProperties : public CDialog
{
// Private data
private:
   // Pointer to the desk frame window -- this is an interface to the virtual
   // desktop logic
   CZDDeskFrame *m_pFrame;

// Construction
public:
   // Constructor
   CZDDeskProperties(CZDDeskFrame *pFrame, CWnd* pParent = NULL);   // standard constructor

// Dialog Data
   //{{AFX_DATA(CZDDeskProperties)
   enum { IDD = IDD_PROPERTIES };
   CSpinButtonCtrl   m_Spin;
   CEdit   m_DeskCount;
   //}}AFX_DATA


// Overrides
   // ClassWizard generated virtual function overrides
   //{{AFX_VIRTUAL(CZDDeskProperties)
   protected:
   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
   //}}AFX_VIRTUAL

// Implementation
protected:

   // Generated message map functions
   //{{AFX_MSG(CZDDeskProperties)
   virtual BOOL OnInitDialog();
   virtual void OnOK();
   //}}AFX_MSG
   DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?