Цитата:
Сообщение от max_torent
А подробнее не подскажите? Где именно копать
|
Компонент TLabel описан в модуле StdCtrls. Подробнее смотри там:
Код:
.....
unit StdCtrls;
.....
procedure TCustomLabel.SetTransparent(Value: Boolean);
begin
if Transparent <> Value then
begin
if Value then
ControlStyle := ControlStyle - [csOpaque] else
ControlStyle := ControlStyle + [csOpaque];
Invalidate;
end;
end;
.....