本文整理自网络,侵删。
创建大窗口
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 10.3 调试程序时出错:unable to create process:请求的操作需要提升
Delphi xe5、6、7在android或者ios上使用ansistring和ansichar
Delphi 一组数据,按由大到小进行排序,并输出最大值与最小值
更多相关阅读请进入《Delphi》频道 >>