?? info.pas
字號:
unit info;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons;
type
TInfo_form = class(TForm)
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
Imposta: TButton;
Label1: TLabel;
procedure ImpostaClick(Sender: TObject);
procedure BitBtn2Click(Sender: TObject);
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Info_form: TInfo_form;
implementation
uses main;
{$R *.DFM}
procedure TInfo_form.ImpostaClick(Sender: TObject);
begin
Main_form.Showmodal ;
end;
procedure TInfo_form.BitBtn2Click(Sender: TObject);
begin
close ;
end;
procedure TInfo_form.BitBtn1Click(Sender: TObject);
begin
main_form.Stampa(0) ;
close ;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -