This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

30 lines
621 B
ObjectPascal

// Создание оконного приложения
{$apptype windows}
{$reference 'System.Windows.Forms.dll'}
uses
System,
System.Windows.Forms;
var
myForm: Form;
myButton: Button;
procedure MyButtonClick(sender: Object; e: EventArgs);
begin
myForm.Close;
end;
begin
myForm := new Form;
myForm.Text := 'Оконное приложение';
myButton := new Button;
myButton.Text := ' Закрыть окно ';
myButton.AutoSize := True;
myButton.Left := 90;
myButton.Top := 110;
myForm.Controls.Add(myButton);
myButton.Click += MyButtonClick;
Application.Run(myForm);
end.