pascalabcnet/TestSuite/errors/err0527_eto.pas
Ivan Bondarev f3a18c9e33 #2928
2023-11-12 12:17:38 +01:00

19 lines
432 B
ObjectPascal

//!Сборка 'Microsoft.WindowsAPICodePack.Shell.dll' не найдена
{$apptype windows}
{$reference Eto.dll}
{$reference Eto.WinForms.dll}
uses Eto.Forms;
type MyForm = class(Form)
constructor;
begin
Title := 'My Cross-Platform App';
ClientSize := new Eto.Drawing.Size(200, 200);
var lbl := new &Label();
lbl.Text := 'Test';
Content := lbl;
end;
end;
begin
(new Application()).Run(new MyForm());
end.