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 清除ie缓存 internet临时文件 cookie 历史记录 表单记录 上网密码

Delphi windows 编程[12] - 菜单与菜单资源(1-3)

Delphi memo 的当前行、当前列与当前字符

Delphi代码实现窗口最小化,最大化,关闭消息发送

Delphi webbrowser1 缩放网页

Delphi 查找某函数在某个单元

Delphi idhttp的用法

Delphi 去掉treeview水平滚动条

Delphi 倒计时源码

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



打赏

取消

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

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

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

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

评论

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