MFC中Edit Control值的獲取與賦值


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();
}

運行結果:

image


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM