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 idhttp代理设置

Delphi richedit选中文字右键菜单的实现

Delphi package 把函数单元做成bpl调用

Delphi datasnap的线程池

Delphi 在richedit中插入gif图片的方法

Delphi判断当前用户是否为管理员

Delphi 图像操作

Delphi 把字符串复制到剪贴板

Delphi 中压缩流和解压流的应用

Delphi xe5 android 程序退出功能

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



打赏

取消

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

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

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

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

评论

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