GabrielMoraru 30 Posted March 23 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 March 23 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 30 Posted March 23 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