vote up 1 vote down star
1

How could one change the opacity of a TWinControl based control? And why didn't they add this capability to TControl/TWinControl level (why only TForm)?

flag

1  
I don't how you'd do it. As I understand it, Windows only added the translucency to windows, which is why TForm can handle it, but not individual controls. Remember that most of the VCL is simply a wrapper around the Windows Common Controls, and so if Windows doesn't do it, the related VCL control rarely will either. Third-party components often then extend the basic functionality. – _J_ Oct 28 at 10:03
@_J_: You are correct. Why not add this as an answer so that it can be accepted? – Lars Truijens Oct 28 at 10:25

2 Answers

vote up 3 vote down check

Controlling the opacity of a window is offered by a feature called layered windows. You can read more about the feature on MSDN. The feature is only available for top-level windows. As far as I can tell, Desktop Window Manager (Vista's "glass" effect) is also only available for top-level windows.

Alternatives available for child windows are to use window regions to mark certain areas of a window as completely transparent, or to use bitmap alpha blending to draw the whole control yourself.

link|flag
Thanks for the extra effort for linking. – utku_karatas Oct 28 at 14:51
vote up 5 vote down

Thanks Lars.

I don't how you'd do it. As I understand it, Windows only added the translucency to windows, which is why TForm can handle it, but not individual controls. Remember that most of the VCL is simply a wrapper around the Windows Common Controls, and so if Windows doesn't do it, the related VCL control rarely will either. Third-party components often then extend the basic functionality.

link|flag
3  
Please edit this, even controls are windows (HWND type). The important point is that support isn there only for windows without the WS_CHILD style. A form with an overridden CreateParams method which sets the WS_CHILD style can't be translucent either. – mghie Oct 28 at 10:54
mghie, thank you, I think your comment says it all. – _J_ Oct 28 at 14:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.