53 lines
1.4 KiB
C++
Executable File
53 lines
1.4 KiB
C++
Executable File
#if !defined(AFX_POWERDLG_H__336E0B74_39E1_4068_B275_50459299F029__INCLUDED_)
|
|
#define AFX_POWERDLG_H__336E0B74_39E1_4068_B275_50459299F029__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// PowerDlg.h : header file
|
|
//
|
|
#include "BmpTxtButton.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPowerDlg dialog
|
|
|
|
class CPowerDlg : public CDialog
|
|
{
|
|
private:
|
|
CBrush m_BgBrush; // ±³¾°»Ë¢
|
|
// Construction
|
|
public:
|
|
CPowerDlg(CWnd* pParent = NULL); // standard constructor
|
|
~CPowerDlg();
|
|
// Dialog Data
|
|
//{{AFX_DATA(CPowerDlg)
|
|
enum { IDD = IDD_DIALOG_POWER };
|
|
CBmpTxtButton m_butExit;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPowerDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CPowerDlg)
|
|
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnPaint();
|
|
afx_msg void OnButtonPowerExit();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_POWERDLG_H__336E0B74_39E1_4068_B275_50459299F029__INCLUDED_)
|