CRect rect;
CWnd *pWnd = GetDlgItem(IDC_picture);//IDC_picture为picture控件ID
pWnd->GetClientRect(&rc);//rc为控件的大小。
int x=rect.Height();
int y=rect.Width()。
假设控件ID是IDC_AAA,
CRect rect;
GetDlgItem(IDC_AAA)->GetWindowRect(&rect);
控件的宽是rect.Width(),高是rect.Height();