pendialog.h

来自「Visual C++ 2005的源代码」· C头文件 代码 · 共 40 行

H
40
字号
#pragma once


// CPenDialog dialog

class CPenDialog : public CDialog
{
	DECLARE_DYNAMIC(CPenDialog)

public:
	CPenDialog(CWnd* pParent = NULL);   // standard constructor
	virtual ~CPenDialog();

// Dialog Data
	enum { IDD = IDD_PENWIDTH_DLG };

  // Data stored in the dialog
public:
   int m_PenWidth;                     // Record the pen width

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

	DECLARE_MESSAGE_MAP()
public:
  virtual BOOL OnInitDialog();
public:
  afx_msg void OnPenwidth0();
public:
  afx_msg void OnPenwidth1();
public:
  afx_msg void OnPenwidth2();
public:
  afx_msg void OnPenwidth3();
public:
  afx_msg void OnPenwidth4();
public:
  afx_msg void OnPenwidth5();
};

⌨️ 快捷键说明

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