📄 querysetdef.h
字号:
// QuerySetDef.h//-----------------------------------------------------------------------------#include "corelib/PwsPlatform.h"#if defined(POCKET_PC) #include "pocketpc/PwsPopupDialog.h" #define SUPERCLASS CPwsPopupDialog#else #define SUPERCLASS CDialog#endifclass CQuerySetDef : public SUPERCLASS{// Constructionpublic: typedef SUPERCLASS super; CQuerySetDef(CWnd* pParent = NULL); // standard constructor// Dialog Data //{{AFX_DATA(CQuerySetDef) enum { IDD = IDD_QUERYSETDEF }; BOOL m_querycheck; //}}AFX_DATA CString m_message;// Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CQuerySetDef)protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL// Implementationprotected: //{{AFX_MSG(CQuerySetDef) virtual void OnOK(); virtual void OnCancel(); //}}AFX_MSG DECLARE_MESSAGE_MAP()};#undef SUPERCLASS//-----------------------------------------------------------------------------// Local variables:// mode: c++// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -