lazedit: Adds a about box

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2299 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
sekelsenmat
2012-02-16 11:27:35 +00:00
parent 68121d48e9
commit db032e3d1f
7 changed files with 95 additions and 39 deletions

View File

@ -0,0 +1,41 @@
unit lazedit_about;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
lazedit_constants;
type
{ TformAbout }
TformAbout = class(TForm)
Button1: TButton;
Label1: TLabel;
labelCopyright: TLabel;
procedure FormCreate(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
formAbout: TformAbout;
implementation
{$R *.lfm}
{ TformAbout }
procedure TformAbout.FormCreate(Sender: TObject);
begin
labelCopyright.Caption := CopyLeftStatement;
end;
end.