Delphi 实现窗体倒计时进度条显示


本文整理自网络,侵删。

 
演示:



unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls;

type
  TForm1 = class(TForm)
    Timer1: TTimer;
    ProgressBar1: TProgressBar;
    Label1: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure Timer1Timer(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  Limit: Integer;
implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  Limit:= 10;
  Label1.Caption:= '离定时期限还有'+IntToStr(Limit)+'秒..';
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
  if Limit<=0 then
  begin
    Timer1.Enabled:= False;
    Close;
  end
  else
  begin
    ProgressBar1.Position:= 30-Limit;
    Label1.Caption:= '离定时期限还有'+IntToStr(Limit)+'秒..';
    Dec(Limit);
  end;
end;

end.

相关阅读 >>

Delphi 将字型样式转成字串

Delphi中动态加载treeview信息

Delphi fdconnection1获取查询语句的第一个值

Delphi 学习 sql 语句 - select(9): 其他

Delphi dcc64.exe Delphi64位命令行编译器揭秘

Delphi xe5 android 调用 google zxing

Delphi 优盘背景生成器源码

Delphi 判断文件是否正在被使用

Delphi 世界时间转换

Delphi 取得开机时间 开机时间总长度(可精确到秒,分钟等)

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...