📄 p_information.~pas
字号:
unit P_information;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, jpeg, ExtCtrls, Buttons, StdCtrls,MMSystem,MPlayer;
type
TF_information = class(TForm)
Image1: TImage;
SpeedButton1: TSpeedButton;
Label1: TLabel;
Label2: TLabel;
procedure SpeedButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
F_information: TF_information;
implementation
uses p_data, p_main, p_jiayin;
{$R *.dfm}
procedure TF_information.SpeedButton1Click(Sender: TObject);
begin
//PlaySound(PChar('msg.wav'),0,12);
f_main.Timer2.Enabled:=false;
close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -