CButton操作总结

   CButton控件是MFC控件中用的最多的一个控件了,以下是对它的操作的总结:

 

条款1:获取CButton控件上的内容

CString str  = NULL;

button.GetWindowText(str);

button.SetWindowText(_T("smart"));

 

条款2:改变按钮的使用状态

CButton*   button;  
  button=(CButton*)GetDlgItem(IDC_BUTTON1);  
  button.EnableWindow(FALSE);  
   
  GetDlgItem(IDOK)->EnableWindow(false);   //变灰  
  GetDlgItem(IDOK)->EnableWindow(true);   //能用 CButton*   button;   
 
    

你可能感兴趣的:(mfc,button)