How can you remove the border from TCategoryPanel and TCategoryPanelGroup in XE3?
Tried this and didn\'t work:
type TCategoryPanel = class (Vcl.E
For TCategoryPanel you need to set the protected property BevelOuter to bvNone.
TCategoryPanel
BevelOuter
bvNone
For TCategoryPanelGroup you can indeed remove the border in CreateParams. Like so:
TCategoryPanelGroup
CreateParams
Params.Style := Params.Style and (not WS_BORDER);
It looks like this: