Click here to Skip to main content
15,878,959 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
I'm Drawing Rectangle using `Grahpics` Class(GDI+).
And I have set the form's opacity to 30%.

this is my code.
Graphics gr = e.Graphics;
Pen pen = new Pen(new SolidBrush(Color.FromArgb(255,Color.Red)),1);
gr.Clear(this.BackColor);
gr.DrawRectangle(pen, rect);

but.. Pen Opacity is 30% too!

I'm so want the original color.

how can i do?
Posted
Updated 6-Sep-11 22:42pm
v3

1 solution

It's not possible with windows forms. A partially transparent form cannot have opaque controls (or drawings). You could use two form approach, one fully transparent with opaque controls over another partially transparent form. You can also use windows transparency key of opaque form to hide unwanted area Or Use simply use WPF. Hope this helps
 
Share this answer
 
v2
Comments
rus204 6-Sep-11 10:03am    
thnx, and.. how can i do that in WPF? no example?
[no name] 10-Sep-11 4:27am    
Check the below link.
http://stackoverflow.com/questions/1541837/how-do-i-make-my-form-transparent-but-what-i-draw-on-it-not

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