searchdlg.h
来自「使用vc开发的个人信息管理系统」· C头文件 代码 · 共 59 行
H
59 行
#if !defined(AFX_SEARCHDLG_H__9226D518_A955_4806_BA56_9B674372A382__INCLUDED_)
#define AFX_SEARCHDLG_H__9226D518_A955_4806_BA56_9B674372A382__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SearchDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSearchDlg dialog
#include "Checkout.h"
class CSearchDlg : public CDialog
{
// Construction
public:
CSearchDlg(CWnd* pParent = NULL); // standard constructor
DECLARE_DYNCREATE(CSearchDlg)
// Dialog Data
//{{AFX_DATA(CSearchDlg)
enum { IDD = IDD_SEARCHDLG };
CEdit m_SelectNode;
CEdit m_EndTime;
CEdit m_BeginTime;
CComboBox m_lookFor;
CString m_strLookFor;
CString m_strBeginTime;
CString m_strEndTime;
CString m_strNodeName;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSearchDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSearchDlg)
afx_msg void OnSize(UINT nType, int cx, int cy);
virtual BOOL OnInitDialog();
afx_msg void OnSelchangeCombo1();
afx_msg void OnButtonSelectnode();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CCheckout p_Checkout;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SEARCHDLG_H__9226D518_A955_4806_BA56_9B674372A382__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?