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.

32 lines
769 B
C++

#pragma once
#include "MyBttom.h"
// CDlgAuthorityLogin 对话框
//权限管理
class CDlgAuthorityLogin : public CDialogEx
{
DECLARE_DYNAMIC(CDlgAuthorityLogin)
public:
CDlgAuthorityLogin(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgAuthorityLogin();
virtual void OnCancel();
// 对话框数据
enum { IDD = IDD_AUTHORITY_LOGIN };
private:
CString m_Name;
CString m_PassWord;
CMyBottom m_LoginBtn;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
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();
};