要给MFC编辑框赋值,可以使用以下方法:
CString strText = _T("Hello, World!"); m_edit.SetWindowText(strText);
char* szText = "Hello, World!"; m_edit.SetWindowTextA(szText);
SetDlgItemText(IDC_EDIT1, strText);
通过以上方法,可以方便地给MFC编辑框赋值。