| ¶Ô±ÈÐÂÎļþ |
| | |
| | | #pragma once |
| | | #include "afxdialogex.h" |
| | | #include "GridCtrl.h" |
| | | |
| | | // CPortConfigurationDlg å¯¹è¯æ¡ |
| | | |
| | | class CPortConfigurationDlg : public CDialogEx |
| | | { |
| | | DECLARE_DYNAMIC(CPortConfigurationDlg) |
| | | |
| | | public: |
| | | CPortConfigurationDlg(CWnd* pParent = nullptr); // æ åæé 彿° |
| | | virtual ~CPortConfigurationDlg(); |
| | | |
| | | // å¯¹è¯æ¡æ°æ® |
| | | #ifdef AFX_DESIGN_TIME |
| | | enum { IDD = IDD_DIALOG_PORT_CONFIGURATION }; |
| | | #endif |
| | | |
| | | protected: |
| | | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV æ¯æ |
| | | virtual BOOL OnInitDialog(); |
| | | DECLARE_MESSAGE_MAP() |
| | | |
| | | private: |
| | | CGridCtrl m_wndGrid; |
| | | |
| | | void InitGrid(); |
| | | void FillGrid(); |
| | | }; |