mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 08:52:59 +02:00
28 lines
340 B
ObjectPascal
28 lines
340 B
ObjectPascal
unit fDwin;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, QGraphics, QControls, QForms, QDialogs, QStdCtrls,
|
|
QExtCtrls;
|
|
|
|
type
|
|
Tdwin = class(TForm)
|
|
Memo1: TMemo;
|
|
Panel1: TPanel;
|
|
Button1: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
dwin: Tdwin;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|