setupdlg.h
来自「通过VC源代码」· C头文件 代码 · 共 48 行
H
48 行
// SetupDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSetupDlg dialog
class CSetupDlg : public CDialog
{
// Construction
public:
CSetupDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CSetupDlg)
enum { IDD = IDD_SETUP };
CSpinButtonCtrl c_SpinGoDoneVariance;
CSpinButtonCtrl c_SpinGoDoneMin;
CEdit c_GoDoneVariance;
CEdit c_GoDoneMin;
CSpinButtonCtrl c_SpinPollingInterval;
CEdit c_PollingInterval;
CButton c_OK;
CComboBox c_IRQ;
int m_IRQ;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSetupDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
void updateControls();
// Generated message map functions
//{{AFX_MSG(CSetupDlg)
afx_msg void OnSelendokIrq();
virtual void OnOK();
virtual BOOL OnInitDialog();
afx_msg void OnHelp();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?