Description
This point shows the way of applying shadows to forms in C#. This method works only for Win2000 or later (2K,XP,2003,Vista,...)
C# code
Add this code to your form class.
protected override CreateParams CreateParams
{
get
{
const int CS_DROPSHADOW = 0x20000;
CreateParams param = base.CreateParams;
param.ClassStyle += CS_DROPSHADOW;
return param;
}
}