// DialogIoComment.cpp: 实现文件 // #include "pch.h" #include "MTerm1.h" #include "DialogIoComment.h" #include "afxdialogex.h" // CDialogIoComment 对话框 IMPLEMENT_DYNAMIC(CDialogIoComment, CDialogEx) CDialogIoComment::CDialogIoComment(CWnd* pParent /*=nullptr*/) : CDialogEx(IDD_DIALOG_IO_COMMENT, pParent) { } CDialogIoComment::~CDialogIoComment() { } void CDialogIoComment::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CDialogIoComment, CDialogEx) END_MESSAGE_MAP() // CDialogIoComment 消息处理程序 BOOL CDialogIoComment::OnInitDialog() { CDialogEx::OnInitDialog(); // TODO: 在此添加额外的初始化 ShowParams(); GetDlgItem(IDC_EDIT_IO_COMMENT)->SetFocus(); return false; return TRUE; // return TRUE unless you set the focus to a control // 异常: OCX 属性页应返回 FALSE } void CDialogIoComment::OnOK() { // TODO: 在此添加专用代码和/或调用基类 GetParams(); CDialogEx::OnOK(); } int CDialogIoComment::ShowParams() { // TODO: 在此处添加实现代码. SetDlgItemText(IDC_STATIC_IO_NAME, m_sIOName); SetDlgItemText(IDC_EDIT_IO_COMMENT, m_sComment); return 0; } int CDialogIoComment::GetParams() { // TODO: 在此处添加实现代码. // GetDlgItemText(IDC_STATIC_IO_NAME, m_sIOName); GetDlgItemText(IDC_EDIT_IO_COMMENT, m_sComment); return 0; }