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.
30 lines
724 B
C++
30 lines
724 B
C++
#pragma once
|
|
|
|
|
|
// CDlgAuthorityCreatAccount 对话框
|
|
|
|
class CDlgAuthorityCreatAccount : public CDialogEx
|
|
{
|
|
DECLARE_DYNAMIC(CDlgAuthorityCreatAccount)
|
|
|
|
public:
|
|
CDlgAuthorityCreatAccount(CWnd* pParent = NULL); // 标准构造函数
|
|
virtual ~CDlgAuthorityCreatAccount();
|
|
|
|
// 对话框数据
|
|
enum { IDD = IDD_AUTHORITY_CREAT_ACCOUNT };
|
|
private:
|
|
CString m_Name;
|
|
CString m_PassWord1;
|
|
CString m_PassWord2;
|
|
CComboBox m_AuthorityComb;
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
virtual BOOL OnInitDialog();
|
|
DECLARE_MESSAGE_MAP()
|
|
private:
|
|
void IniAuthorityComb();
|
|
public:
|
|
afx_msg void OnBnClickedOk();
|
|
};
|