i have a custom control,
with the Ancestor being another custom control,
who’s Ancestor is a TPanel;
i.e.
TNotMyCustomControl = class(Tpanel);
TMyCustomControl = class(TNotMyCustomControl);
Is i possible to react when the Caption is being set (run time or design time), and still have the changed passed to the Ancestor controls?
It is possible. Just add a
CMTextChangedmessage handler to your customTPanel: