So… I’m working on a little custom FireMonkey control. As in the
VCL, if you want to
handle drawing a custom control yourself, you need to override its Paint method. In my case the override was looking like this: procedure TMyChildControl.Paint; begin if (Parent nil) and ...
More...