Click here to Skip to main content
15,891,633 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How do i make certain parts of the form to have different opacity. For example i want only the top part of the same form to have 50% opacity and the other part to be just normal. I am currently
using

Me.Opacity = 0.5
Posted

1 solution

There is no such feature in System.Windows.Forms. In general, transparency implementation is quite bad in this library (and WPF is way better). You can do whatever you want at the level of your own rendering, but at the level of controls you cannot really rely on the .NET FCL implementation.

—SA
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900