Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
type
TForm1 = class(TForm)
private
...
protected
procedure CreateParams(var Params: TCreateParams); override;
public
...
end;
.....
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do begin
WndParent := GetDesktopwindow;
ExStyle := ExStyle or WS_EX_TOPMOST;
end;
end;