Is it possible to change the default grey border of a GroupBox
to something visible? (for example black or blue?). I found a similar question but related to the GroupBox
caption not for the border.
Thanks
Is it possible to change the default grey border of a GroupBox
to something visible? (for example black or blue?). I found a similar question but related to the GroupBox
caption not for the border.
Thanks
For your requirements you could do two things:
Now for option 1 I strongly recommend FlatStyle open source set of components it contains
TFlatGroupBox
which has what you are asking. This is the link to the latest modified version by me (it is compatible with delphi 10 seattle).For option 2 lets put some criteria for our component
psSolid
,psDash
,psDot
,psDashDot
,psDashDotDot
,psClear
,psInsideFrame
,psUserStyle
,psAlternate
).this is yet another modified version of
TFlatGroupBox
with added featuresWith the added features you can change the color of the border, the width, the style and have the choice to have no border at all by setting the border style to
psClear
.regards Nasreddine.