Registriert seit: 29. Jan 2003
Ort: Reichenbach
253 Beiträge
Delphi 2009 Professional
|
Re: Property-Editor
31. Jul 2003, 18:55
achso ich vergass, du definierst das Property mit:
type TXPListBox = class(TCustomControl)
private
fAbout: TAboutXPListBox;
published
property About: TAboutXPListBox read fAbout write fAbout;
end;
|