1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
CRect Rect;
CRect Rect2(0,0,200,300);
CWnd *pWnd = this;
pWnd->GetWindowRect( &Rect );
AddControl(IDC_STATIC,eSizeType::sizeResize,eSizeType::sizeResize);
InitDialog(Rect,TRUE);
CStatic* GroupBox;
GroupBox = (CStatic*) GetDlgItem(IDC_STATIC);
GroupBox ->GetWindowRect(&Rect2);
AddControl(IDC_STATIC2,eSizeType::sizeNone ,eSizeType::sizeNone);
AddControl(IDC_LIST1,eSizeType::sizeResize ,eSizeType::sizeResize);
AddControl(IDC_STATIC3,eSizeType::sizeResize ,eSizeType::sizeResize );
AddControl(IDC_LIST2,eSizeType::sizeResize ,eSizeType::sizeResize);
InitDialog(Rect2,TRUE);
|
Partager