码迷,mamicode.com
首页 > 编程语言 > 详细

MFC中Edit Control值的获取与赋值

时间:2015-06-06 11:50:44      阅读:807      评论:0      收藏:0      [点我收藏+]

标签:

void CEditControlDlg::OnClickedButton()
{
    // TODO: Add your control notification handler code here
    //获得EDIT 
    CEdit* pBoxOne; 
    pBoxOne = (CEdit*) GetDlgItem(IDC_EDIT); 
    //赋值 
    //pBoxOne-> SetWindowText( _T("FOO ") ); 
    //取值 
    CString str;
    pBoxOne-> GetWindowText(str); 

    MessageBox(str,_T("程序运行结果"),MB_OK);
    str.ReleaseBuffer();
}

运行结果:

技术分享

MFC中Edit Control值的获取与赋值

标签:

原文地址:http://www.cnblogs.com/wangshunli/p/4556233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!