You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#pragma once
|
|
|
|
|
#include "MyBttom.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// CDlgAuthorityLogin <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|
|
|
|
//Ȩ<><EFBFBD><DEB9><EFBFBD>
|
|
|
|
|
class CDlgAuthorityLogin : public CDialogEx
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC(CDlgAuthorityLogin)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CDlgAuthorityLogin(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|
|
|
|
virtual ~CDlgAuthorityLogin();
|
|
|
|
|
virtual void OnCancel();
|
|
|
|
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
enum { IDD = IDD_AUTHORITY_LOGIN };
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
CString m_Name;
|
|
|
|
|
CString m_PassWord;
|
|
|
|
|
CMyBottom m_LoginBtn;
|
|
|
|
|
protected:
|
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
|
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
public:
|
|
|
|
|
afx_msg BOOL PreTranslateMessage(MSG* pMsg);
|
|
|
|
|
afx_msg void OnBnClickedLogin();
|
|
|
|
|
afx_msg void OnPaint();
|
|
|
|
|
afx_msg void OnBnClickedShowWindowMinBtn();
|
|
|
|
|
};
|