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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// CDlgAuthorityMgr <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|
|
|
|
//Ȩ<><EFBFBD><DEB9><EFBFBD>
|
|
|
|
|
class CDlgAuthorityMgr : public CDialogEx
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC(CDlgAuthorityMgr)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CDlgAuthorityMgr(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|
|
|
|
virtual ~CDlgAuthorityMgr();
|
|
|
|
|
void RefreashAuthority();
|
|
|
|
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
enum { IDD = IDD_AUTHORITY_MGR };
|
|
|
|
|
private:
|
|
|
|
|
CString m_CurAuthority;//<2F><>ǰȨ<C7B0><C8A8>
|
|
|
|
|
CString m_CurUser;
|
|
|
|
|
CString m_Name;
|
|
|
|
|
CString m_PassWord;
|
|
|
|
|
|
|
|
|
|
CMyBttom m_LoginBtn;
|
|
|
|
|
CMyBttom m_LockBtn;
|
|
|
|
|
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 OnBnClickedLock();
|
|
|
|
|
};
|