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.
25 lines
666 B
C++
25 lines
666 B
C++
#pragma once
|
|
|
|
class CDlgAuthorityPar : public CDialogEx
|
|
{
|
|
DECLARE_DYNAMIC(CDlgAuthorityPar)
|
|
|
|
public:
|
|
CDlgAuthorityPar(CWnd* pParent = NULL); // 标准构造函数
|
|
virtual ~CDlgAuthorityPar();
|
|
|
|
// 对话框数据
|
|
enum { IDD = IDD_AUTHORITY_PAR_DLG };
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBnClickedOk();
|
|
DECLARE_MESSAGE_MAP()
|
|
private:
|
|
CListCtrl m_AuthorityParList;
|
|
CComboBox m_AuthorityTypeCombo;
|
|
int m_CurAuthorityType;
|
|
public:
|
|
afx_msg void OnCbnSelchangeAuthTypeCombo();
|
|
};
|