对话框

对话框
BOOL CThresholdDlg::OnInitDialog()
{
    CDawnView 
*  view = (CDawnView * )m_pParentWnd;
    CDialog::OnInitDialog();
    GetDlgItem(IDC_EDIT1)
-> SetWindowTextW(_T( " 40 " ));
    
return  TRUE;
}
 CDialog::OnInitDialog();一定要写在 GetDlgItem(IDC_EDIT1) -> SetWindowTextW(_T( " 40 " ));前面
OnInitDialog() 原型  virtual  BOOL OnInitDialog()
GetDlgItem(ID)获得指定ID的控件的句柄





你可能感兴趣的:(对话框)