Shadows on WinForm c# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Shadows on WinForm c#

hello everyone, i wanna ask how can i apply a nice shadow effect on my WindowsForm .net project ?! i saw some codes on StackOverFlow But they only work on windows10 and they only two sides shadow , i want to have a FULL 4 sides shadow , (i mean shadow on 4 corners not only 2) and thanks !

8th Nov 2022, 6:08 AM
Yousef Eabitan
Yousef Eabitan - avatar
1 Answer
+ 1
Create a new class that inherits from Form: public class ShadowedForm : Form { // ... } Override the CreateParams property to add the WS_EX_COMPOSITED and CS_DROPSHADOW styles: protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x02000000; // WS_EX_COMPOSITED cp.ClassStyle |= 0x00020000; // CS_DROPSHADOW return cp; } } Override the OnPaint method to draw the shadow: protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); using (var shadowBrush = new SolidBrush(Color.FromArgb(30, 0, 0, 0))) { var shadowSize = 10; var shadowRect = new Rectangle(-shadowSize, -shadowSize, Width + shadowSize, Height + shadowSize); e.Graphics.FillRectangle(shadowBrush, shadowRect); } } Then use Application.Run(new ShadowForm())
3rd Mar 2023, 1:56 AM
Kanoosher