码迷,mamicode.com
首页 > Windows程序 > 详细

限制窗体的大小

时间:2014-09-18 00:38:42      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:des   io   os   使用   ar   for   sp   on   c   

重载 TCustomForm 中的消息处理函数
procedure WMGetMinMaxInfo(var Message: TWMGetMinMaxInfo); message WM_GETMINMAXINFO;

procedure TBrxServerForm.WMGetMinMaxInfo(var Message: TWMGetMinMaxInfo);
begin
inherited;
With Message.MinMaxInfo^ do
begin
ptMinTrackSize.X := 640;
ptMinTrackSize.Y := 480;
end;
end;

  WM_GETMINMAXINFO消息在窗体改变大小或位置时候发送到窗口,应用程序可以改写其中的窗体
的大小和位置。

消息结构定义如下:

LRESULT CALLBACK WindowProc(
HWND hwnd, // handle to window
UINT uMsg, // WM_GETMINMAXINFO
WPARAM wParam, // not used
LPARAM lParam // window information (LPMINMAXINFO)
);

第二个参数就是本消息的ID值。
最后一个参数是指向 MINMAXINFO 结构体指针。此结构定义如下:

typedef struct tagMINMAXINFO {
POINT ptReserved;
POINT ptMaxSize;
POINT ptMaxPosition;
POINT ptMinTrackSize;
POINT ptMaxTrackSize;
} MINMAXINFO;

  ptReserved:
  保留项目,目前没有使用。

  ptMaxSize:
  指定窗体的最大高度(point.x)和宽度(point.y)。在多监视器的系统中,设定运用于主监视器上。

  ptMaxPosition:
指定最大化状态的窗体的左边的位置 (point.x) 和最大化窗体定边的位置 (point.y)。 在多监
视器系统中,设定运用于主监视器。

  ptMinTrackSize:
  指定窗体框架最小宽度下限 (point.x) 和最小高度下限 (point.y) 。 在多监视器系统中,不会
有所变化。

  ptMaxTrackSize:
  指定窗体框架最小宽度下限 (point.x) 和最小高度下限 (point.y) 在多监视器系统中,大小和
监视器中最大的值一样。

 

Remarks
The following table describes the changes that occur for a system with multiple monitors.

MINMAXINFO member Definition for multiple monitors
ptMaxSize When a window is maximized or resized, this refers to the primary monitor.
ptMaxPosition Refers to the monitor that the window will maximize on, not the desktop.
ptMinTrackSize Unchanged.
ptMaxTrackSize Size for a window that is made as large as the virtual screen.


The system automatically compensates for differences between the primary monitor and the monitor of the window. Thus, if the user leaves ptMaxSize untouched, a window on a monitor larger than the primary monitor will maximize to the size of the larger monitor.

Requirements
Windows NT/2000/XP: Included in Windows NT 3.1 and later.
Windows 95/98/Me: Included in Windows 95 and later.
Header: Declared in Winuser.h; include Windows.h.

 

限制窗体的大小

标签:des   io   os   使用   ar   for   sp   on   c   

原文地址:http://www.cnblogs.com/spiritofcloud/p/3978316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!