confirmdeletedlg.h

来自「Password Safe Password Safe is a passwor」· C头文件 代码 · 共 51 行

H
51
字号
// ConfirmDeleteDlg.h//-----------------------------------------------------------------------------#include "corelib/PwsPlatform.h"#if defined(POCKET_PC)  #include "pocketpc/resource.h"  #include "pocketpc/PwsPopupDialog.h"  #define SUPERCLASS	CPwsPopupDialog#else  #include "resource.h"  #define SUPERCLASS	CDialog#endifclass CConfirmDeleteDlg : public SUPERCLASS{	typedef SUPERCLASS		super;// Constructionpublic:   CConfirmDeleteDlg(CWnd* pParent = NULL);   // standard constructor// Dialog Data   //{{AFX_DATA(CConfirmDeleteDlg)   enum { IDD = IDD_CONFIRMDELETE_DIALOG };   bool	m_dontaskquestion;   //}}AFX_DATA// Overrides   // ClassWizard generated virtual function overrides   //{{AFX_VIRTUAL(CConfirmDeleteDlg)protected:   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support   //}}AFX_VIRTUAL// Implementationprotected:   // Generated message map functions   //{{AFX_MSG(CConfirmDeleteDlg)   virtual void OnCancel();   virtual void OnOK();   //}}AFX_MSG   DECLARE_MESSAGE_MAP()};#undef SUPERCLASS//-----------------------------------------------------------------------------// Local variables:// mode: c++// End:

⌨️ 快捷键说明

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