控件获取(50分)

  • 主题发起人 主题发起人 行人-乙
  • 开始时间 开始时间

行人-乙

Unregistered / Unconfirmed
GUEST, unregistred user!
高手们:
我想在Listbox1,和listbox2中显示出当前界面中自动获取所用到的控件名称,和类,怎么获取???比如我在界面中添加了button控件,在运行时在listbox1和listbox2中自动显示相关内容。
 
你想要的是不是这样:
self.ListBox1.Items.Text:=self.Button1.Caption;
self.ListBox2.Items.Text:=self.Button1.Caption;
以上是获取内容,
我想你要的不仅仅是这样的吧.
以下是获取控件名称:Btn(即是Button)
self.ListBox1.Items.Text:=self.Btn.Name;
self.ListBox2.Items.Text:=self.Btn.Name;
或许不对,不好意思.
 
不是这个意思
我的意思是先写一句话,(应该用for语句)然后随便加几个控件,让listbox1和listbox2分别获取相关控件的类名和控件名称。
这个for语句怎么写???
 
for i:=0 to self.ComponentCount-1 do
begin
...
end;
 
谢谢了,散分了
 
后退
顶部