CEdit* pEdit = new CEdit;
pEdit->Create(ES_MULTILINE | WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER,
CRect(10, 10, 100, 100), this, 1);
Button Click 事件
1).h
//{{AFX_MSG(CTsDlg)
afx_msg void OnButton1();
2).cpp
BEGIN_MESSAGE_MAP(CTsDlg, CDialog)
//{{AFX_MSG_MAP(CTsDlg)
ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
3)增加member 函数
Cedit 赋值
CEdit* pEdit;
pEdit = (CEdit*)GetDlgItem(12345);
pEdit->SetWindowText ("hui");
pEdit->GetWindowText(str);