ChOwn2.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit ChOwn2;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
- type
- TForm2 = class(TForm)
- ButtonList: TButton;
- ListBox1: TListBox;
- procedure ButtonListClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- Form2: TForm2;
- implementation
- {$R *.DFM}
- procedure TForm2.ButtonListClick(Sender: TObject);
- var
- I: Integer;
- begin
- ListBox1.Items.Clear;
- for I := 0 to ComponentCount - 1 do
- ListBox1.Items.Add (Components[I].Name);
- end;
- end.