I am using VB.Net and I’d like to ask how could I make my form invisible while the other objects on it are visible? When I set the form’s opacity property into 0%, the objects on it are affected. Thanks in advance :))
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the TransparencyKey Property of the form. You can set the forms back color, then set that as the transparency key and only the back color will become transparent. It will make the form transparent except the controls.
Like this:
Hope this helps.