| 发表于:2007-06-12 20:32:061楼 得分:0 |
程序最小化时看不到: type tform1 = class(tform) private { private declarations } procedure on_mininize(var msg: tmessage); message wm_syscommand; public { public declarations } end; var form1: tform1; implementation {$r *.dfm} procedure tform1.on_mininize(var msg: tmessage); begin if (msg.msg = wm_syscommand) then if (msg.wparamlo = sc_minimize) then self.hide; end; | | |
|