Okay hi,
Firstly i have a border less which i need as i have my own custom 'skin'
which looks like this and is found here.http://i51.tinypic.com/2i77o94.png
As you can see it has no drop shadow at all. What i want to achieve is for it to have a drop shadow much like this http://i54.tinypic.com/hrk5l0.png
i know all about the create param's method i even posted a snippet on it
private const int CS_DROPSHADOW = 0x20000;
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ClassStyle |= CS_DROPSHADOW;
return cp;
}
}
However this only gives me a very small shadow and only on the bottom and right sides of the form. I'd like a four sided shadow which was considerably larger than the create params method. As far as i know create param's cannot be modified to produce a larger shadow.
I've heard that i might be able to achieve this through layered windows?
Thanks for any help you can give me on this issue. Links, code or pointers.
NSSLTD