How to adjust TPanel transparency?

When placing the TPanel component in the designer, it seems that it cannot be made transparent ? There is an opacity option, but this only happens with the animation. I want the panel to be completely transparent, so I see the image below it. (I want to use the panel as a way to control the layout of the controls placed on it)

+4
source share
2 answers

Use TLayout or TRectangle instead of TPanel.

+10
source

To do this, you can use almost any opacity of the object, for example:

 Panel1->Opacity=0.5; 
+1
source

Source: https://habr.com/ru/post/1489101/


All Articles