mfc在编辑框中读入文本
时间: 2023-06-16 12:04:15 浏览: 117
在 MFC 中,可以通过 CEdit 类来访问编辑框控件,并读取其中的文本。
假设你有一个名为 m_edit 的 CEdit 对象,可以通过以下代码读取编辑框中的文本:
```cpp
CString str;
m_edit.GetWindowText(str);
```
其中,GetWindowText() 函数用于获取编辑框的文本,而将其存储在 CString 对象中。
另外,如果你想要设置编辑框中的文本,可以使用 SetWindowText() 函数,例如:
```cpp
m_edit.SetWindowText(_T("Hello, world!"));
```
阅读全文