QuakeGod
2021-11-30 0ed43835e6bf40ba4d31fb6b8dc0d8400162b90a
提交 | 用户 | age
0ed438 1 // DialogIoComment.cpp: 实现文件
Q 2 //
3
4 #include "pch.h"
5 #include "MTerm2.h"
6 #include "DialogIoComment.h"
7 #include "afxdialogex.h"
8
9
10 // CDialogIoComment 对话框
11
12 IMPLEMENT_DYNAMIC(CDialogIoComment, CDialogEx)
13
14 CDialogIoComment::CDialogIoComment(CWnd* pParent /*=nullptr*/)
15     : CDialogEx(IDD_DIALOG_IO_COMMENT, pParent)
16 {
17
18 }
19
20 CDialogIoComment::~CDialogIoComment()
21 {
22 }
23
24 void CDialogIoComment::DoDataExchange(CDataExchange* pDX)
25 {
26     CDialogEx::DoDataExchange(pDX);
27 }
28
29
30 BEGIN_MESSAGE_MAP(CDialogIoComment, CDialogEx)
31 END_MESSAGE_MAP()
32
33
34 // CDialogIoComment 消息处理程序
35
36
37 BOOL CDialogIoComment::OnInitDialog()
38 {
39     CDialogEx::OnInitDialog();
40
41     // TODO:  在此添加额外的初始化
42     ShowParams();
43     GetDlgItem(IDC_EDIT_IO_COMMENT)->SetFocus();
44     return false;
45     return TRUE;  // return TRUE unless you set the focus to a control
46                   // 异常: OCX 属性页应返回 FALSE
47 }
48
49
50 void CDialogIoComment::OnOK()
51 {
52     // TODO: 在此添加专用代码和/或调用基类
53     GetParams();
54     CDialogEx::OnOK();
55 }
56
57
58 int CDialogIoComment::ShowParams()
59 {
60     // TODO: 在此处添加实现代码.
61     SetDlgItemText(IDC_STATIC_IO_NAME, m_sIOName);
62     SetDlgItemText(IDC_EDIT_IO_COMMENT, m_sComment);
63     return 0;
64 }
65
66
67 int CDialogIoComment::GetParams()
68 {
69     // TODO: 在此处添加实现代码.
70 //    GetDlgItemText(IDC_STATIC_IO_NAME, m_sIOName);
71     GetDlgItemText(IDC_EDIT_IO_COMMENT, m_sComment);
72
73     return 0;
74 }