阅读量:0
要给MFC编辑框赋值,可以使用以下方法:
- 使用SetWindowText函数:可以使用该函数将文本内容直接设置到编辑框中,示例代码如下:
CString strText = _T("Hello, World!"); m_edit.SetWindowText(strText);
- 使用SetWindowTextA或SetWindowTextW函数:如果需要设置ANSI字符或Unicode字符,可以分别使用SetWindowTextA或SetWindowTextW函数,示例代码如下:
char* szText = "Hello, World!"; m_edit.SetWindowTextA(szText);
- 使用SetDlgItemText函数:如果编辑框是对话框中的控件,可以使用SetDlgItemText函数,示例代码如下:
SetDlgItemText(IDC_EDIT1, strText);
通过以上方法,可以方便地给MFC编辑框赋值。