MFC 设置对话框位置
时间: 2024-02-18 20:59:48 浏览: 101
MFC设置位图为对话框背景
5星 · 资源好评率100%
要设置MFC对话框的位置,可以使用CWnd类的MoveWindow()方法。该方法接受四个参数:左上角x坐标,左上角y坐标,宽度和高度。可以在对话框类的OnInitDialog()方法中调用MoveWindow()来设置对话框的位置。例如,以下代码将对话框移动到屏幕中央:
```
BOOL CMyDialog::OnInitDialog()
{
CDialogEx::OnInitDialog();
// 获取屏幕大小
int screenWidth = GetSystemMetrics(SM_CXSCREEN);
int screenHeight = GetSystemMetrics(SM_CYSCREEN);
// 获取对话框大小
CRect dlgRect;
GetWindowRect(&dlgRect);
int dlgWidth = dlgRect.Width();
int dlgHeight = dlgRect.Height();
// 计算对话框左上角坐标
int x = (screenWidth - dlgWidth) / 2;
int y = (screenHeight - dlgHeight) / 2;
// 移动对话框
MoveWindow(x, y, dlgWidth, dlgHeight);
return TRUE;
}
```
阅读全文