Microsoft
Software
Hardware
Network
Question : Transparent Form (Only) in C#
I was just wondering how to make a form transparent (as in through 0% Opacity) but having all the controls showing up as usual (without becoming transparent too).. Thus showing only the controls without the back of the form... Thanks!
Answer : Transparent Form (Only) in C#
To not to make controls transparent but only the form, use TransparencyKey property like:
public Form2()
{
InitializeComponent();
//this.Opacity = 0.5;
this.TransparencyKey = BackColor;
}
Random Solutions
VB.NET Setup Installing App Files Without Asking What Folder to Install
EtherChannel on Cisco 2960 switch intermittent dropped packet
Restoring MSSQL 2000 databases to MSSQL 2005
Why won''t my computer access the Internet using IE after MSFT updates?
Sync Center and Moving Redirected Folder in SBS2008
Location tab missing from My Documents properties
Outlook 2007 Continually asks for an Exchange Server password
Desktop Dating Site - criminal activity - given new web privacy laws for such as Facebook
Listing worksheet names of a closed workbook
How to compress a string into a short representation in ASP.NET using C# or VB.NET?