In Delphi XE2, I have a ListView with thumbnails of images. When I click one of the thumbnails, I want the ListView to be covered with a dark semi-transparent layer and have the clicked image zoomed on top of this layer.
Since it is not possible to put a TImage on top of a ListView, I tried to use another form with AlphaBlend 128 transparency for the layer. However, this AlphaBlend form makes also the TImage on it Alpha-transparent.
So the target seems be to make the layer form AlphaBlend-transparent but not the image on it. How can this be achieved?
EDIT on 7.Aug.2012:
SOLVED!! Thanks to Remy Lebeau, who gave me the decisive hint to parenting the image. I've found TW7Image from TMS which is the only image type I know having an Opacity (i.e. AlphaBlend) property. I used this procedure:
In W7Image, load a Black image in Picture property, set Opacity to 192 and set Stretch mode.
Set other image to Center, Proportional etc, then:
// In this order (!):
// 1.
imgSemiTransparentBlackLayer.Parent := MyListView;
imgSemiTransparentBlackLayer.Align := alClient;
// 2.
imgTop.Picture.LoadFromFile('MyPicture.png');
imgTop.Parent := MyListView;
imgTop.Align := alClient;
UpdateLayeredWindow()function can be used to set up per-pixel alpha blending and transparency, but that uses a very different type of painting scheme, andTFormnormally usesSetLayeredWindowAttributes()instead. – Remy Lebeau Aug 7 '12 at 2:07this waysince he gave you the idea ;-) – TLama Aug 8 '12 at 6:33