MFC对话框尺寸的设置,我没在属性里面看到,可以在MyDialog::OnInitDialog()函数里面重新设置对话框的尺寸,代码如下
CRect temprect(0,0,640,480); CWnd::SetWindowPos(NULL,0,0,temprect.Width(),temprect.Height(),SWP_NOZORDER|SWP_NOMOVE);