⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit_frmflash.pas

📁 影院售票系统完整源码
💻 PAS
字号:
unit Unit_frmflash;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ComCtrls, ExtCtrls;

type
  TFrmflash = class(TForm)
    Timer1: TTimer;
    Label1: TLabel;
    procedure Timer1Timer(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
    msg:string;
    { Public declarations }
  end;

var
  Frmflash: TFrmflash;

implementation
uses unit_public;
{$R *.dfm}

procedure TFrmflash.Timer1Timer(Sender: TObject);
begin
  close;
end;

procedure TFrmflash.FormShow(Sender: TObject);
begin
  label1.Caption :=msg;
  Timer1.Interval:=publicinfo.showtime ;
  Timer1.Enabled :=true;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -