settimedlg.h
来自「《Visual C++编程技巧典型案例解析:基础与应用篇(下)(含1CD-ROM」· C头文件 代码 · 共 54 行
H
54 行
#if !defined(AFX_SETTIMEDLG_H__9F714C82_2F98_48F1_9BDF_BA6FB3C2E2D3__INCLUDED_)
#define AFX_SETTIMEDLG_H__9F714C82_2F98_48F1_9BDF_BA6FB3C2E2D3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SetTimeDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSetTimeDlg dialog
class CSetTimeDlg : public CDialog
{
// Construction
public:
BOOL m_bTwoRest;
long m_lHour,m_lMinute;
CSetTimeDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CSetTimeDlg)
enum { IDD = IDD_OFFCOMP_DIALOG };
CString m_sTestTime;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSetTimeDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSetTimeDlg)
virtual BOOL OnInitDialog();
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnDestroy();
afx_msg void OnCheck1();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
UINT m_uTimer;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SETTIMEDLG_H__9F714C82_2F98_48F1_9BDF_BA6FB3C2E2D3__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?