Click here to Skip to main content
15,896,726 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
and also,why i can not change backcolor Attribute of Mdi form?
help me to change the back color of mdi form to Transparent
Posted
Updated 3-Jul-13 0:57am
v3

1 solution

try this
C#
private void Form1_Load(object sender, EventArgs e)
   {  this.SetStyle(System.Windows.Forms.ControlStyles.SupportsTransparentBackColor, true);
     this.BackColor = System.Drawing.Color.Transparent;
   }
 
Share this answer
 

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