?? unitaboutform.pas
字號(hào):
unit UnitAboutForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, jpeg, ExtCtrls, StdCtrls;
type
TForm_About = class(TForm)
Label_Title2: TLabel;
Label_Title1: TLabel;
Bevel2: TBevel;
Label3: TLabel;
Label6: TLabel;
Label8: TLabel;
Panel1: TPanel;
Image1: TImage;
Label4: TLabel;
Label_Owner: TLabel;
Button1: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form_About: TForm_About;
implementation
uses UnitGISShell;
{$R *.dfm}
procedure TForm_About.FormCreate(Sender: TObject);
begin
Label_Title1.Caption:=MyGIS.ProjectName;
Label_Title2.Caption:=MyGIS.ProjectName;
Label_Owner.Caption:= MyGIS.RegOwnerName;
end;
procedure TForm_About.Button1Click(Sender: TObject);
begin
Close;
end;
end.
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -