QLibCompForm.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit QLibCompForm;
  2. interface
  3. uses
  4.   SysUtils, Types, Classes, QGraphics, QControls, QForms, QDialogs,
  5.   QStdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Button1: TButton;
  9.     Edit1: TEdit;
  10.     ListBox1: TListBox;
  11.     procedure Button1Click(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   Form1: TForm1;
  19. implementation
  20. {$R *.xfm}
  21. procedure TForm1.Button1Click(Sender: TObject);
  22. begin
  23.   ListBox1.Items.add (Edit1.Text);
  24. end;
  25. end.