能够实现MFC Dialog类打开窗体自动显示在屏幕右上角
1、GetSystemMetrics() :用于得到被定义的系统数据或者系统配置信息;
2、GetClientRect() :得到客户区的位置和大小,一般用于获取窗口大小;
3、GetWindowRect() :得到窗口(对话框或控件)的屏幕坐标,一般用于获取对话框的屏幕坐标或和ScreenToClient()配合使用获取控件的客户区坐标;
4、ScreenToClient() : 屏幕坐标转换为客户区坐标,一般和GetWindowRect()配合使用获取控件的客户区坐标
//下边两个函数获取的是显示屏幕的大小,但不包括任务栏等区域
int cx = GetSystemMetrics(SM_CXFULLSCREEN);
int cy = GetSystemMetrics(SM_CYFULLSCREEN);
//下边这两个函数获取的是真正屏幕的大小:屏幕分辨率
int nWidth=GetSystemMetrics(SM_CXSCREEN); //屏幕宽度
int nHeight=GetSystemMetrics(SM_CYSCREEN); //屏幕高度
CString strScreen;
strScreen.Format(L"%d,%d",nWidth,nHeight);
MessageBox(strScreen);
//对话框窗体大小及其屏幕坐标
CRect rectDlg;
//法1:
GetClientRect(rectDlg);//获得窗体的大小
//法2:
//GetWindowRect(rectDlg);//获得窗体在屏幕上的位置
//ScreenToClient(rectDlg);
CString strDlg;
strDlg.Format(L"%d,%d,%d,%d",rectDlg.left,rectDlg.top,rectDlg.Width(),rectDlg.Height());
MessageBox(strDlg);
//控件大小和位置
CRect rectCtrl;
CStatic *p=(CStatic*)GetDlgItem(IDC_STATIC_TEST);
p->MoveWindow(100,100,100,100);//更改控件大小并移动其到指定位置
p->GetWindowRect(rectCtrl);
this->ScreenToClient(rectCtrl);
//GetDlgItem(IDC_STATIC_TEST)->GetClientRect(rectCtrl);
CString str;
str.Format(L"%d,%d,%d,%d",rectCtrl.left,rectCtrl.top,rectCtrl.Width(),rectCtrl.Height());
MessageBox(str);
BOOL SetWindowPos(const CWnd* pWndInsertAfter,int x,int y,int cx,int cy,UINT nFlags);
x
y
: 控件位置cx
cy
: 控件宽度和高度nFlags
常用取值:
SWP_NOZORDER
: 忽略第一个参数SWP_NOMOVE
: 忽略x、y,维持位置不变SWP_NOSIZE
: 忽略cx、cy,维持大小不变CWnd *pWnd;
pWnd = GetDlgItem( IDC_BUTTON1 ); //获取控件指针,IDC_BUTTON1为控件ID号
pWnd->SetWindowPos( NULL,50,80,0,0,SWP_NOZORDER | SWP_NOSIZE ); //把按钮移到窗口的(50,80)处
pWnd = GetDlgItem( IDC_EDIT1 );
pWnd->SetWindowPos( NULL,0,0,100,80,SWP_NOZORDER | SWP_NOMOVE ); //把编辑控件的大小设为(100,80),位置不变
pWnd = GetDlgItem( IDC_EDIT1 );
pWnd->SetWindowPos( NULL,0,0,100,80,SWP_NOZORDER ); //编辑控件的大小和位置都改变
类向导对窗口类添加WM_SHOWWINDOW
在OnShowWindow
中加入下面代码
void CBLToolsDlg::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialogEx::OnShowWindow(bShow, nStatus);
// TODO: 获取桌面分辨率
int cxScreen = GetSystemMetrics(SM_CXSCREEN);
int cyScreen = GetSystemMetrics(SM_CYSCREEN);
// TODO: 获取Dialog大小
CRect tRect;
GetWindowRect(tRect);
int wDialog = tRect.Width();
int hDialog = tRect.Height();
// TODO: Add your message handler code here
// 四个参数(x,y,窗体宽度,窗体高度) cxScreen-wDialog
// 用屏幕的宽度减去Dialog的宽度,正好可以将屏幕显示在右上角
this->MoveWindow(cxScreen-wDialog,0, wDialog, hDialog);
}
有些东西写的很碎,纯属是有些东西,知识点,每当你过上半年不看,基本都已经忘记,所以是为了提示后面自己如何去快速拾回曾经的知识点,也是给后续的读者一个帮助和参考。