Opacity Property

  • Thread starter Thread starter Nuno Magalhaes
  • Start date Start date
N

Nuno Magalhaes

Opacity property of a form, blends the blue bar (that has the close,
maximize and minimize buttons) also. How can I blend the form without
blending the above system blue bar?

Another question, how can I convert a specified client point into a
specified desktop coordinate?

Thanks for any reply,
Nuno Magalhaes.
 
Nuno said:
Opacity property of a form, blends the blue bar (that has the close,
maximize and minimize buttons) also. How can I blend the form without
blending the above system blue bar?

Sorry, I don't know.
Another question, how can I convert a specified client point into a
specified desktop coordinate?

Control.PointToScreen (and .PointToClient to go the other way).
 
The only way to do what you want would be to use the LayeredWindow API's and
per-pixel alpha transparency.

I don't have any example of this at the moment.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top