首页 > 编程 > Delphi > 正文

delphi程序全屏显示无标题栏覆盖整个屏幕(适合屏保)

2020-01-31 20:52:01
字体:
来源:转载
供稿:网友
delphi 程序全屏显示无标题栏,覆盖整个屏幕,这个在做工控机或屏保时有用的,所以记下
复制代码 代码如下:

procedure TMainFrm.FormCreate(Sender: TObject);
begin
with MainFrm do begin
{ Position form }
Top := 0 ;
Left := 0 ;
{ Go full screen}
BorderStyle := bsNone ;
WindowState := wsmaximized;
ClientWidth := Screen.Width ;
ClientHeight := Screen.Height;
Refresh;
SetForegroundWindow(Handle) ;
SetActiveWindow(Application.Handle) ;
end;
end;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选