I want to make a half-transparent form but I want to put a panel on it which will not be transparent. How do I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
UpdateLayeredWindow(W7 and before), in which case you perform all the drawing (including non-client area), and which does not quite fit VCL's paint scheme (not criticizing it). For practical purposes I'd say this would be either not possible or quite difficult. – Sertac Akyuz Oct 23 '12 at 19:39UpdateLayeredWindow()is available "W2K and after" instead of "W7 and before". – Remy Lebeau Oct 24 '12 at 1:47UpdateLayeredWindow(). Move the panel to a separate borderless captionlessTForm. You can then set the mainTFormtoAlphaBlend=TrueandAlphaBlendValue=...as desired, then position the second opaqueTFormon top of it. If the user moves the mainTForm, just move the secondTFormaccordingly. – Remy Lebeau Oct 24 '12 at 1:49