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读写文本文件 assignfile reset append

Delphi json

Delphi 两个exe之间共享数据

Delphi-idhttp-utf-8编码乱码解决

Delphi中coinitialize作用

Delphi tfilestream 流操作2

Delphi android 关闭应用程序对话框询问

Delphi接收文件拖放

decodedatetime:将一个tdatetime变量拆分成它的日期/时间 部分

Delphi根据网络链接截取域名

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



打赏

取消

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

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

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

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

评论

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