I would want to have tabs like here (all are glass):
A program is written in Delphi or C++ Builder. I can't find a class of the tabs in Winspector Spy & Window Detective.
I know a very good component - rkAeroTabs, but unfortunately it doesn't show an active tab with glass (that's what I need), & other tabs are not fully glass:
(source: rmklever.com)
Does anybody know how to get those glass tabs? Thanks.
here
). Workaround this will need deeper modifications. And there is also an unpleasant artifact which you can see also in your screenshot; there is a solid rectangle behind the control colored byColorBackground
. – AnisoleFTransparent
property field. By setting it to True the background become transparent (seehere
). – Anisolehere
and the same with the transparent backgroundhere
. – AnisoleTrkAeroTabs.SetColors
and modify the lineBrushes[2] := TGPSolidBrush.Create(MakeColor(255, Byte(c), Byte(c shr 8), Byte(c shr 16)));
to...MakeColor(200, Byte(c), Byte(c shr 8), Byte(c shr 16))...
where 200 means the transparency of the active tab color. I don't know how would you paint a glass effect over a non-transparent element. – Anisole