Delphiフォームの非表示と表示
2410 ワード
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls;
type
TForm1 = class(TForm)
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
Application.ShowMainForm:=False; //
Beep;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Application.ShowMainForm:=True; //
Application.MainForm.Show(); //
Timer1.Enabled:=False;
end;
end.
転載先:https://www.cnblogs.com/qingsong/archive/2012/08/06/2625416.html