Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Seen this question asked a lot but can't seem to find an answer. So here it is. Can you use a PNG with an alpha channel as the background image for a VB app? I don't care about changing the shape of the app rectangle is fine. They just want to use a character with a drop shadow behind him as the background for the app.

share|improve this question
WinForms? WPF? Silverlight? – SLaks Jan 12 '11 at 17:47
sorry should have said, I forget that VB comes in various forms now. This is in VB 2008, winforms, .NET 2.0 – Khainestar Jan 13 '11 at 9:26

1 Answer

up vote 0 down vote accepted

In WinForms, you'll need to make a layered window.
In WPF, you'll need to set AllowsTransparency to true and WindowStyle to None.

share|improve this answer
Hhmm might have problems with that then. The brief I have only goes to .Net 2.0, I think we are going to have to go with opaque backgrounds. Thanks though. – Khainestar Jan 13 '11 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.