void CMy11Dlg::OnButton1()
{
// TODO: Add your control notification handler code here
CString str;
GetDlgItemText(IDC_EDIT1,str); //用GetDlgItemText(文本框ID,字符串),將文本框內(nèi)容存放到字符串中.
SetDlgItemText(IDC_EDIT2,str);//用SetDlgItemText(文本框ID,字符串),將文本框的內(nèi)容設(shè)置為字符串的內(nèi)容.
}
|