📄 unit1.pas
字号:
unit Unit1;
interface
uses
Unit3,
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, UnitASBase, UnitASPages, UnitASButtons, ExtCtrls, StdCtrls;
type
TForm1 = class(TForm)
ASPageControl1: TASPageControl;
ASActiveButton1: TASActiveButton;
ASActiveButton2: TASActiveButton;
ASActiveButton3: TASActiveButton;
Image1: TImage;
Memo1: TMemo;
procedure ASActiveButton1Click(Sender: TObject);
procedure ASActiveButton3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.ASActiveButton1Click(Sender: TObject);
begin
Form3:= TForm3.Create(Self);
try
Form3.ShowModal;
finally
Form3.Free;
end;
end;
procedure TForm1.ASActiveButton3Click(Sender: TObject);
begin
Form3:= TForm3.Create(Self);
try
Form3.ShowModal;
finally
Form3.Free;
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -