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