现在的位置: 首页 > 自动控制 > 工业·编程 > 正文

动态改变基于CDialog的窗口的大小

2012-06-11 21:26 工业·编程 ⁄ 共 579字 ⁄ 字号 暂无评论

动态更改对话框大小
CRect rect;
GetWindowRect(&rect);
SetWindowPos(NULL, rect.left, rect.top, rect.Width()+deltaW, rect.Height()+deltaH, SWP_NOMOVE);

动态更改控件大小
CRect rect;
CWnd* pWnd = GetDlgItem(IDC_XXXX);
pWnd->GetWindowRect(&rect);
pWnd->MoveWindow(rect.left, rect.top, rect.Width()+deltaW, rect.Height()+deltaH, True);

如果需要在改变大小的时候移动对话框位置(相对于屏幕)
int cx=GetSystemMetrics(SM_CXSCREEN);   //屏幕宽度
int cy=GetSystemMetrics(SM_CYSCREEN);   //屏幕高度
CRect rect; 
GetWindowRect(&rect);
int w = rect.Width();
int h = rect.Height();
AfxGetApp()->m_pMainWnd->MoveWindow((cx-w-deltaW)/2,(cy-h-deltaH)/2,w+deltaW,h+deltaH,true);     //移动窗体不改变大小

给我留言

留言无头像?