delphi 不可移动的窗体


本文整理自网络,侵删。

  procedure windowsposchange(var Msg:TWMWINDOWPOSCHANGING);message WM_WINDOWPOSCHANGING; 

var
Form13: TForm13;
//
oleft:integer;
otop:integer;
owidth:integer;
oHeight:integer;


implementation

{$R *.dfm}

procedure TForm13.FormCreate(Sender: TObject);
begin
oleft:=Left;
otop:=Top;
owidth:=Width;
oheight:=Height;
end;

procedure TForm13.windowsposchange(var Msg:TWMWINDOWPOSCHANGING);
begin
Msg.WindowPos.x:=oleft;
Msg.windowpos.y:=otop;
Msg.windowpos.cx:=owidth;
Msg.windowpos.cy:=oheight;
inherited;
end;

相关阅读 >>

Delphi gdi+基本用法总结

Delphi xe 打开andorid gps设置

Delphi 字符串插入与删除

Delphi 窗口跟随

Delphi 通�^窗口句柄或窗口标题得到进程句柄

Delphi读写文本文件 assignfile reset append

Delphi 释放res资源文件

Delphi最全面的dbgrid点击标题实现排序

Delphi二进制字符串转换成中文字符串

Delphi windows消息大全

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...