5

When placing the TPanel component in designer, it seems it can not be made transparent? There's an opacity option, but that only deails with animations. I want the panel itself to be fully transparent, so I can see the image underneath. (I want to use the panel as a way of control layout of the controls placed on it)

Sir Rufo
  • 18,395
  • 2
  • 39
  • 73
Tom
  • 3,587
  • 9
  • 69
  • 124

2 Answers2

11

Use TLayout or TRectangle instead of TPanel.

AvgustinTomsic
  • 1,809
  • 16
  • 22
2

You can use almost any object opacity for that, for example:

Panel1->Opacity=0.5;
chopper
  • 6,649
  • 7
  • 36
  • 53
Rancho
  • 21
  • 1