SetWindowText(str);2、SetDlgItemText()和GetDlgItemTex_mfc编辑框绑定数值">
赞
踩
三种方法:
1、SetWindowText() 和GetWindowText()
建一个对应 IDC_EDIT1的控制型变量,如m_edit1,
m_Edit1.SetWindowText("Hello");
或者
GetDlgItem(IDC_EDIT1)->SetWindowText(str);
2、SetDlgItemText()和GetDlgItemText()
- CString Str="Hello":
- m_edit1.SetDlgItemText(IDC_EDIT1,str);
先在DoDataExchange(CDataExchange* pDX)里面绑定变量:
DDX_Text(pDX, IDC_EDIT1, mValue);
mValue可以是数值,也可以是字符串
- //取值
- UpdateData(TRUE); //mValue的值在此时更新
- CString buf = mValue;
- //赋值
- mValue="ok!";
- UpdateData(FALSE); //mValue的值发送到编辑框
UpdateData(FALSE); //用于将数据在屏幕中对应控件中显示出来。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。