• GetWindowRect() 和 GetClientRect() 的区别 沉沉_


    新建一个基于对话框的MFC的exe程序:

    删除对话框的所有按钮,并添加一个test按钮,添加一个Static控件,ID为IDC_STATIC:

    双击test按钮,在响应函数中添加以下代码:

    View Code
     1 void CTestMapDlg::OnBtnTest() 
     2 {
     3     // TODO: Add your control notification handler code here
     4     CRect rect;
     5     CString str;
     6     
     7     CWnd* pStatic = (CWnd*) GetDlgItem(IDC_STATIC);
     8 
     9     pStatic->GetWindowRect(&rect);
    10     str.Format("In GetWindowRect: rect.left = %d, rect.top = %d, rect.right = %d, rect.bottom = %d",
    11             rect.left, rect.top, rect.right, rect.bottom);
    12     MessageBox(str);
    13 
    14     pStatic->ScreenToClient(&rect);
    15     str.Format("In GetWindowRect and after ScreenToClient: rect.left = %d, rect.top = %d, rect.right = %d, rect.bottom = %d",
    16             rect.left, rect.top, rect.right, rect.bottom);
    17     MessageBox(str);
    18 
    19     pStatic->GetClientRect(&rect);
    20     str.Format("In GetClientRect: rect.left = %d, rect.top = %d, rect.right = %d, rect.bottom = %d",
    21             rect.left, rect.top, rect.right, rect.bottom);         MessageBox(str);
    22 
    23     pStatic->ClientToScreen(&rect);
    24     str.Format("In  GetClientRect and after ClientToScreen: rect.left = %d, rect.top = %d, rect.right = %d, rect.bottom = %d",
    25             rect.left, rect.top, rect.right, rect.bottom);
    26     MessageBox(str);
    27 }

     

    这个显示的是以屏幕左上角为原点的像素坐标。

    说明GetWindowRect(&rect) 得到的矩形坐标是以屏幕左上角的点为原点的坐标。

    这个显示的是以TestMap对话框的静态控件左上角为起点的像素坐标。

    说明ScreenToClient(&rect) 能把以屏幕左上角的坐标转换成以调用该函数对象所关联的窗口(静态控件)的左上角的坐标。

    这个显示的是以TestMap对话框的静态控件左上角为起点的像素坐标。

    说明GetClientRect(&rect) 得到的坐标等于以

    GetWindowRect(&rect)和 ScreenToClient(&rect) 的组合。

    PS:仅对于那些没有边框的静态控件。

    这个显示的是以屏幕左上角为原点的像素坐标。

    说明GetWindowRect(&rect) 等于

    GetClientRect(&rect) 和 ScreenToWindow(&rect) 的组合。

  • 相关阅读:
    都是CSS惹的祸
    Ruby简介
    网络攻击利用DedeCms漏洞
    ASP.NET验证技术详解
    一个低级错误引发的血案
    FCKeditor配置和精简【附源码】
    邮件发送详解
    Timer定时器的设计实例详解
    常用的加密算法MD5、SHA1
    JS日历控件集合附效果图、源代码
  • 原文地址:https://www.cnblogs.com/chenchenluo/p/2715586.html
Copyright © 2020-2023  润新知