mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-10 03:12:39 +02:00
35 lines
426 B
ObjectPascal
35 lines
426 B
ObjectPascal
unit Unit1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, MyWidgetSet, LResources;
|
|
|
|
type
|
|
|
|
{ TMyForm1 }
|
|
|
|
TMyForm1 = class(TMyForm)
|
|
MyButton1: TMyButton;
|
|
MyButton2: TMyButton;
|
|
MyGroupBox1: TMyGroupBox;
|
|
MyGroupBox2: TMyGroupBox;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
MyForm1: TMyForm1;
|
|
|
|
implementation
|
|
|
|
initialization
|
|
{$I unit1.lrs}
|
|
|
|
end.
|
|
|