WM_SIZE procedure WMSize (var Message: TWMSize); message WM_SIZE; 参数说明 wParam: Specifies the type of resizing requested. 通常用来向别的窗口发送消息时,需要指定的附加信息 Valu Read More
posted @ 2017-07-06 16:40 findumars Views(925) Comments(0) Diggs(0)
procedure WMSetFocus (var Message: TWMSetFocus); message WM_SETFOCUS; //获得焦点procedure WMKillFocus (var Message: TWMKillFocus); message WM_KILLFOCUS; / Read More
posted @ 2017-07-06 16:37 findumars Views(824) Comments(0) Diggs(0)
http://www.cnblogs.com/toosuo/archive/2012/02/18/2357315.html Read More
posted @ 2017-07-06 16:14 findumars Views(1169) Comments(0) Diggs(0)
如果不改编译选项Delphi的Record默认也是4字节对齐的. 可以用编译开关指定 {$A4+}就是4字节对齐.同理{$A2+}.{$A1+}等.{$A1+}等同于Packed Record 主要容易被忽略的是Delphi的枚举. C,C++的枚举默认等同于整数.也就是4字节的. Delphi枚举 Read More
posted @ 2017-07-06 15:43 findumars Views(1671) Comments(0) Diggs(0)
http://www.cnblogs.com/toosuo/p/3637531.html Read More
posted @ 2017-07-06 15:42 findumars Views(642) Comments(0) Diggs(0)