Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm trying to set the opacity property on a child window using the WinFormsUI docking panel with no success. Do you know of a way to make this property work?

Frank
Posted
Comments
Sergey Alexandrovich Kryukov 18-Dec-12 19:17pm    
Well, show some code sample to manifest the problem, you might miss something.
—SA
Akbar Ali Hussain 18-Dec-12 20:13pm    
Is there any panel on top of form?
[no name] 18-Dec-12 21:16pm    
Provide your code...
Killzone DeathMan 19-Dec-12 11:08am    
In parent form you call the child:

FormChild frm = new FormChild();
frm.BringToFront();
frm.ShowDialog();

And in the child form the code are simple... something like that maybe:

this.opacity = 50;

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