加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
progresform.pas 561 Bytes
一键复制 编辑 原始数据 按行查看 历史
JiangXiaoDong 提交于 2021-10-06 23:22 . Init
unit progresform;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls;
type
{ TfrmProgres }
TfrmProgres = class(TForm)
Panel1: TPanel;
private
public
procedure Info(AText:string);
end;
var
frmProgres: TfrmProgres;
implementation
{$R *.frm}
{ TfrmProgres }
procedure TfrmProgres.Info(AText: string);
begin
Panel1.Caption:=AText;
Panel1.Update;
Application.ProcessMessages;
if not Self.Showing then
begin
Self.Show;
Self.BringToFront;
end;
end;
end.
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化