gameabout.pas
来自「电子书阅读器的delphi设计」· PAS 代码 · 共 38 行
PAS
38 行
{
模块名称:关于隐藏游戏
使用方法:1、Create
2、ShowModal
返回值: 无
}
unit GameAbout;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
type
TFormGameAbout = class(TForm)
Label1: TLabel;
Label2: TLabel;
BtnOk: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormGameAbout: TFormGameAbout;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?