zxd
2023-10-21 89cd7441c184d37f90d4d5311b348e938119765f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// DialogIoComment.cpp: 实现文件
//
 
#include "pch.h"
#include "MTerm2.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;
}