Hello Everyone....!
i am trying to add simple shadow to Panel in my User Form but can't find resource on right way. Can anyone help for it or convert attached c# code for apply able to Panel **
private const int CS_DropShadow = 0x00020000;
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ClassStyle != CS_DropShadow;
return cp;
}
}