#pragma once #include "afxwin.h" /*! \class CTAdminRegistrationDlg Åø ¿î¿µÀÚ µî·Ï ´ÙÀ̾ó·Î±× */ class CTAdminRegistrationDlg : public CDialog { DECLARE_DYNAMIC(CTAdminRegistrationDlg) public: CTAdminRegistrationDlg(CWnd* pParent = NULL); virtual ~CTAdminRegistrationDlg(); enum { IDD = IDD_TADMINREGISTRATIONDLG }; protected: virtual void DoDataExchange(CDataExchange* pDX); DECLARE_MESSAGE_MAP() virtual BOOL OnInitDialog(); private: CComboBox m_ctrlTAdminLVCb; CString m_strTAdminIDReg; CString m_strTAdminPassReg; CString m_strTAdminNameReg; CString m_strTAdminLVReg; CString m_strTAdminIPReg; afx_msg void OnDestroy(); afx_msg void OnBnClickedAdminReg(); afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); };