GabrielMoraru 32 Posted Sunday at 05:23 PM Here is a code snippet from VCL.controls.pas: initialization ... StartClassGroup(TControl); ActivateClassGroup(TControl); GroupDescendentsWith(VCL.ImgList.TCustomImageList, TControl); GroupDescendentsWith(TCustomAction, TControl); finalization ... end. Why is TCustomAction which derive from TComponent "promoted" to a TControl? Share this post Link to post
Pat Foley 54 Posted Sunday at 05:55 PM So that it is found in the controls list of the control or component vs the components list of a form or application. 1 Share this post Link to post
GabrielMoraru 32 Posted Sunday at 06:00 PM Just now, Pat Foley said: So that it is found in the controls list of the control or component vs the components list of a form or application. Oh... I thought it is related somehow to the Palette. THANKS Share this post Link to post