Ich kann dein Problem nicht nachvollziehen, hier mein Quelltext:
Delphi-Quellcode:
unit Unit1;
interface
uses Windows, Classes, ImgList, Graphics, Controls, CommCtrl;
type
TFoo =
class(TComponent)
private
fImageList: TImageList;
published
property ImageList: TImageList
read fImageList
write fImageList;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('
Standard', [TFoo]);
end;
end.
ImageList auf die Form, TFoo auf die Form, und ich kann wunderbar die ImageList unter ImageList auswählen