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

Delphi控件源码

开发平台:

Delphi

  1. unit ChOwn2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     ButtonList: TButton;
  9.     ListBox1: TListBox;
  10.     procedure ButtonListClick(Sender: TObject);
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16. var
  17.   Form2: TForm2;
  18. implementation
  19. {$R *.DFM}
  20. procedure TForm2.ButtonListClick(Sender: TObject);
  21. var
  22.  I: Integer;
  23. begin
  24.   ListBox1.Items.Clear;
  25.   for I := 0 to ComponentCount - 1 do
  26.     ListBox1.Items.Add (Components[I].Name);
  27. end;
  28. end.