about.~pas
来自「库存管理信息系统 自带数据库 如有什么问题:247848560」· ~PAS 代码 · 共 43 行
~PAS
43 行
unit about;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, SUIButton, SUIForm;
type
Taboutfrm = class(TForm)
Bevel1: TBevel;
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Panel1: TPanel;
suiForm1: TsuiForm;
BitBtn1: TsuiButton;
Label6: TLabel;
procedure suitempBitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
aboutfrm: Taboutfrm;
implementation
uses main;
{$R *.dfm}
procedure Taboutfrm.suitempBitBtn1Click(Sender: TObject);
begin
mainfrm.Show;
aboutfrm.Hide;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?