【二】MFC对话框的等比例缩放

问题:

①对话框扩大后,里面的控件却没有扩大

②对话框扩大了,里面的控件也扩大了,万万没有想到连按钮也扩大了

③以上两个问题都解决了之后,当你把对话框手动拉到最小时(即:掩盖操作区域),再拉开时却得到空白,怎样解决限制对话框的最小尺度

测试环境:VS2013

1.在CMFCApplication1Dlg类中声明全局变量

  1. class CMFCApplication1Dlg : public CDialogEx
  2. {
  3. ........
  4. public:
  5. POINT old;
  6. ........
  7. };


2.在初始化函数里记录原始对话框大小

  1. BOOL CMFCApplication1Dlg::OnInitDialog()
  2. {
  3. .....
  4. CRect rect;
  5. GetClientRect(&rect); //取客户区大小
  6. old.x = rect.right - rect.left;
  7. old.y = rect.bottom - rect.top;
  8. return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
  9. }

3.添加响应消息函数OnSize

  1. void CMFCApplication1Dlg::OnSize(UINT nType, int cx, int cy)
  2. {
  3. CDialogEx::OnSize(nType, cx, cy);
  4. // TODO: 在此处添加消息处理程序代码
  5. if (nType == SIZE_RESTORED || nType == SIZE_MAXIMIZED)
  6. {
  7. ReSize();// 自己写的函数
  8. }
  9. }


4.对话框等比例缩放的函数ReSize()h函数

  1. // 有限制部分控件不等比例缩放
  2. void CMFCApplication1Dlg::ReSize()
  3. {
  4. float fsp[4];
  5. POINT Newp; //获取现在对话框的大小
  6. CRect recta;
  7. GetClientRect(&recta); //取客户区大小
  8. Newp.x = recta.right - recta.left;
  9. Newp.y = recta.bottom - recta.top;
  10. fsp[0] = (float)Newp.x / old.x;
  11. fsp[1] = (float)Newp.y / old.y;
  12. fsp[2] = (float)Newp.y - old.y;
  13. fsp[3] = (float)Newp.x - old.x;
  14. CRect Rect;
  15. int woc;
  16. CString s;
  17. CPoint OldTLPoint, TLPoint; //左上角
  18. CPoint OldBRPoint, BRPoint; //右下角
  19. HWND hwndChild = ::GetWindow(m_hWnd, GW_CHILD); 取得第一个控件的句柄,用于遍历所有控件
  20. while (hwndChild)
  21. {
  22. woc = ::GetDlgCtrlID(hwndChild);//取得ID
  23. if ((woc == 1002)||(woc==1003))// 1002和1003为控件的ID即:woc 此数字可用CString s; s.Format(_T("%d"), woc); MessageBox(s);测得
  24. {
  25. /*说明:此大括号里面的语句是为了屏蔽按钮的扩大,即保持原来的大小*/
  26. GetDlgItem(woc)->GetWindowRect(Rect);//获得相对于屏幕左上角的坐标
  27. ScreenToClient(Rect);//将屏幕坐标转换成相对客户窗口左上角的坐标
  28. OldTLPoint = Rect.TopLeft();
  29. TLPoint.x = long(OldTLPoint.x + fsp[3]);//用和得出左上角的x坐标
  30. TLPoint.y = long(OldTLPoint.y + fsp[2]); //用和得出左上角的y坐标
  31. OldBRPoint = Rect.BottomRight();
  32. BRPoint.x = long(OldBRPoint.x + fsp[3]); //用和得出右下角的x坐标
  33. BRPoint.y = long(OldBRPoint.y + fsp[2]);//用和得出右下角的y坐标
  34. Rect.SetRect(TLPoint, BRPoint);//设置最新的Rect
  35. GetDlgItem(woc)->MoveWindow(Rect, TRUE);
  36. hwndChild = ::GetWindow(hwndChild, GW_HWNDNEXT);//获得下一个控件的句柄
  37. }
  38. else
  39. {
  40. /*所有控件全都等比例扩大,除了上面的按钮*/
  41. GetDlgItem(woc)->GetWindowRect(Rect);//获得相对于屏幕左上角的坐标
  42. ScreenToClient(Rect);//将屏幕坐标转换成相对客户窗口左上角的坐标
  43. OldTLPoint = Rect.TopLeft();
  44. TLPoint.x = long(OldTLPoint.x * fsp[0]);//用比例得出左上角的x坐标
  45. TLPoint.y = long(OldTLPoint.y * fsp[1]); //用比例得出左上角的y坐标
  46. OldBRPoint = Rect.BottomRight();
  47. BRPoint.x = long(OldBRPoint.x * fsp[0]); //用比例得出右下角的x坐标
  48. BRPoint.y = long(OldBRPoint.y * fsp[1]);//用比例得出右下角的y坐标
  49. Rect.SetRect(TLPoint, BRPoint);//设置最新的Rect
  50. GetDlgItem(woc)->MoveWindow(Rect, TRUE);
  51. hwndChild = ::GetWindow(hwndChild, GW_HWNDNEXT);//获得下一个控件的句柄
  52. }
  53. }
  54. old = Newp;
  55. }
  56. // 对话框中的所有控件都进行等比例缩放
  57. void CMFCApplication1Dlg::ReSize()
  58. {
  59. float fsp[4];
  60. POINT Newp; //获取现在对话框的大小
  61. CRect recta;
  62. GetClientRect(&recta); //取客户区大小
  63. Newp.x = recta.right - recta.left;
  64. Newp.y = recta.bottom - recta.top;
  65. fsp[0] = (float)Newp.x / old.x;
  66. fsp[1] = (float)Newp.y / old.y;
  67. fsp[2] = (float)Newp.y - old.y;
  68. fsp[3] = (float)Newp.x - old.x;
  69. CRect Rect;
  70. int woc;
  71. CPoint OldTLPoint, TLPoint; //左上角
  72. CPoint OldBRPoint, BRPoint; //右下角
  73. HWND hwndChild = ::GetWindow(m_hWnd, GW_CHILD); 取得第一个控件的句柄,用于遍历所有控件
  74. while (hwndChild)
  75. {
  76. woc = ::GetDlgCtrlID(hwndChild);//取得ID
  77. /*所有控件全都等比例扩大,除了上面的按钮*/
  78. GetDlgItem(woc)->GetWindowRect(Rect);//获得相对于屏幕左上角的坐标
  79. ScreenToClient(Rect);//将屏幕坐标转换成相对客户窗口左上角的坐标
  80. OldTLPoint = Rect.TopLeft();
  81. TLPoint.x = long(OldTLPoint.x * fsp[0]);//用比例得出左上角的x坐标
  82. TLPoint.y = long(OldTLPoint.y * fsp[1]); //用比例得出左上角的y坐标
  83. OldBRPoint = Rect.BottomRight();
  84. BRPoint.x = long(OldBRPoint.x * fsp[0]); //用比例得出右下角的x坐标
  85. BRPoint.y = long(OldBRPoint.y * fsp[1]);//用比例得出右下角的y坐标
  86. Rect.SetRect(TLPoint, BRPoint);//设置最新的Rect
  87. GetDlgItem(woc)->MoveWindow(Rect, TRUE);
  88. hwndChild = ::GetWindow(hwndChild, GW_HWNDNEXT);//获得下一个控件的句柄
  89. }
  90. old = Newp;
  91. }

5.解决限制对话框的最小尺度,即响应消息:WM_GETMINMAXINFO

  1. void CMFCApplication1Dlg::OnGetMinMaxInfo(MINMAXINFO* lpMMI)
  2. {
  3. // TODO: 在此添加消息处理程序代码和/或调用默认值
  4. CPoint pt(100, 100); //定义宽和高
  5. lpMMI->ptMinTrackSize = pt; //限制最小宽和高
  6. CDialogEx::OnGetMinMaxInfo(lpMMI);
  7. }


截图:

扩大之前的

扩大之后的:

(0)

相关推荐