урок на делфи 15 - Динамическое создание компонентов


задание на delphi. Создаем Динамичесий Tmemo


unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
memo:TMemo;
begin
memo:=TMemo.Create(form1);
memo.Parent:=Form1;
memo.Left:=50;
memo.Top:=50;
memo.Width:=250;
memo.Height:=100;
memo.Text:='Наш тектс';
end;
end.



Скачать