image with shadow in transparented form
-
how can i have a transparent form with image that have shadow? i want to have a startup form just show image with shadow
Maybe play around with the Opacity property?
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
Maybe play around with the Opacity property?
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
It dose not work. Opacity hide all object. but i want to hide form and show an image with shadow
It was just a quick thought...
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
-
how can i have a transparent form with image that have shadow? i want to have a startup form just show image with shadow
If you set the TransparencyKey to the SystemColors.Control, and you make your form borderless, you have a nice splash window. But... the shadow is something you can't do easily. If you tried to embed the shadow in the image, you will see the background behind it. Perhaps you can use WPF for that. Quick search: http://www.codeproject.com/KB/WPF/WPFImageEffects.aspx[^]
-
If you set the TransparencyKey to the SystemColors.Control, and you make your form borderless, you have a nice splash window. But... the shadow is something you can't do easily. If you tried to embed the shadow in the image, you will see the background behind it. Perhaps you can use WPF for that. Quick search: http://www.codeproject.com/KB/WPF/WPFImageEffects.aspx[^]
-
shadow u can do with css property.
box-shadow //
It may help u in better way