本文整理自网络,侵删。
创建大窗口
procedure TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong(
Handle,
GWL_STYLE,
not (WS_THICKFRAME) and GetWindowLong(Handle, GWL_STYLE) or Integer(WS_POPUP)
);
SetWindowPos(Handle, 0, 0, 0, 1920, 1080, SWP_NOZORDER or SWP_NOMOVE);
end;
相关阅读 >>
Delphi 时间与相关类型(3): tfiletime、tsystemtime 及 dos 时间
Delphi tcolortohex 与 hextotcolor
Delphi xe7开发的获取网页中字符串的编码是否是utf8
更多相关阅读请进入《Delphi》频道 >>