MFC 移动控件到指定位置

// TODO: 在此添加额外的初始化代码
SendMessage(WM_SYSCOMMAND,SC_MAXIMIZE,0);
CRect rectL, rectR;
GetDlgItem(IDC_PROGRESS1)->GetWindowRect(rectL);
ScreenToClient(&rectL);


GetWindowRect(rectR);
ScreenToClient(&rectR);


int x(0), y(0), iWidth(0), iHeight(0);


iWidth = rectL.Width();
iHeight = rectL.Height();
x = rectR.left + 10;
y = rectR.bottom - iHeight - 10;



m_process.MoveWindow(x, y, iWidth, iHeight, 1);

你可能感兴趣的:(MFC)