abdellahmehdi 0 Posted July 3, 2022 How to make semi-transparent panel in Delphi VCL Share this post Link to post
PeterBelow 238 Posted July 3, 2022 3 hours ago, abdellahmehdi said: How to make semi-transparent panel in Delphi VCL Set the ParentBackground property of the panel to true. 1 Share this post Link to post
Lajos Juhász 293 Posted July 3, 2022 3 hours ago, abdellahmehdi said: How to make semi-transparent panel in Delphi VCL You can have it on Windows 8 or newer. In the CreateWindowHandle method set the WS_EX_LAYERED window style and use https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setlayeredwindowattributes. Share this post Link to post