How can you remove a border from TCategoryPanel and TCategoryPanelGroup in XE3?
Tried this and did not work:
type TCategoryPanel = class (Vcl.ExtCtrls.TCategoryPanel) protected procedure CreateParams ( var Params: TCreateParams); override ; end ; procedure TCategoryPanel.CreateParams ( var Params: TCreateParams); begin Inherited ; Params.Style:= Params.Style and not WS_BORDER; end ;
source share