C#窗体如何给所有的边框加上阴影

 我来答
greystar_cn
推荐于2018-01-05 · 知道合伙人软件行家
greystar_cn
知道合伙人软件行家
采纳数:16407 获赞数:17260
本人主要从事.NET C#方向的技术开发工作,具有10多年的各类架构开发工作经验。

向TA提问 私信TA
展开全部

我使用的方法是绘制阴影到bitmap上,然后使用双层窗体的原理把bitmap绘制到背景层上去。

其中比较重要的是:

1、绘制圆角矩形

public static void DrawRoundRectangle(Graphics g, Pen pen, Rectangle rect, int cornerRadius)
{
using (GraphicsPath path = CreateRoundedRectanglePath(rect, cornerRadius))
{
g.DrawPath(pen, path);
}
}
public static void FillRoundRectangle(Graphics g, Brush brush, Rectangle rect, int cornerRadius)
{
using (GraphicsPath path = CreateRoundedRectanglePath(rect, cornerRadius))
{
g.FillPath(brush, path);
}
}
internal static GraphicsPath CreateRoundedRectanglePath(Rectangle rect, int cornerRadius)
{
GraphicsPath roundedRect = new GraphicsPath();
roundedRect.AddArc(rect.X, rect.Y, cornerRadius * 2, cornerRadius * 2, 180, 90);
roundedRect.AddLine(rect.X + cornerRadius, rect.Y, rect.Right - cornerRadius * 2, rect.Y);
roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y, cornerRadius * 2, cornerRadius * 2, 270, 90);
roundedRect.AddLine(rect.Right, rect.Y + cornerRadius * 2, rect.Right, rect.Y + rect.Height - cornerRadius * 2);
roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y + rect.Height - cornerRadius * 2, cornerRadius * 2, cornerRadius * 2, 0, 90);
roundedRect.AddLine(rect.Right - cornerRadius * 2, rect.Bottom, rect.X + cornerRadius * 2, rect.Bottom);
roundedRect.AddArc(rect.X, rect.Bottom - cornerRadius * 2, cornerRadius * 2, cornerRadius * 2, 90, 90);
roundedRect.AddLine(rect.X, rect.Bottom - cornerRadius * 2, rect.X, rect.Y + cornerRadius * 2);
roundedRect.CloseFigure();
return roundedRect;}

2、绘制阴影

internal void DrawShadow()
{
Bitmap bitmap = null;
Graphics g = null;    try
{
bitmap = new Bitmap(Width, Height);
g = Graphics.FromImage(bitmap);
g.SmoothingMode = SmoothingMode.AntiAlias;

Color c = Color.FromArgb(0, 0, 0, 0);
Pen p = new Pen(c, 3);        for (int i = 0; i < Main.ShadowWidth; i++)
{
p.Color = Color.FromArgb((255 / 10 / Main.ShadowWidth) * i, c);
DrawRoundRectangle(g, p, new Rectangle(i, i, Width - (2 * i) - 1, Height - (2 * i) - 1), Main.ShadowWidth - i);
}
SetBits(bitmap);
}    catch { }    finally
{
g?.Dispose();
bitmap?.Dispose();
}
}

3、绘制半透明bitmap到窗口上

protected override CreateParams CreateParams
{
get
{
CreateParams cParms = base.CreateParams;
cParms.ExStyle |= 0x00080000; // WS_EX_LAYERED
return cParms;
}
}
public void SetBits(Bitmap bitmap)
{
if (!Image.IsCanonicalPixelFormat(bitmap.PixelFormat) || !Image.IsAlphaPixelFormat(bitmap.PixelFormat))
throw new ApplicationException("图片必须是32位带Alhpa通道的图片。");
IntPtr oldBits = IntPtr.Zero;
IntPtr screenDC = FormStyleAPI.GetDC(IntPtr.Zero);
IntPtr hBitmap = IntPtr.Zero;
IntPtr memDc = FormStyleAPI.CreateCompatibleDC(screenDC);

try
{
FormStyleAPI.Point topLoc = new FormStyleAPI.Point(Left, Top);
FormStyleAPI.Size bitMapSize = new FormStyleAPI.Size(Width, Height);
FormStyleAPI.BLENDFUNCTION blendFunc = new FormStyleAPI.BLENDFUNCTION();
FormStyleAPI.Point srcLoc = new FormStyleAPI.Point(0, 0);

hBitmap = bitmap.GetHbitmap(Color.FromArgb(0));
oldBits = FormStyleAPI.SelectObject(memDc, hBitmap);

blendFunc.BlendOp = FormStyleAPI.AC_SRC_OVER;
blendFunc.SourceConstantAlpha = Byte.Parse(((int)(Main.Opacity * 255)).ToString());
blendFunc.AlphaFormat = FormStyleAPI.AC_SRC_ALPHA;
blendFunc.BlendFlags = 0;

FormStyleAPI.UpdateLayeredWindow(Handle, screenDC, ref topLoc, ref bitMapSize, memDc, ref srcLoc, 0, ref blendFunc, FormStyleAPI.ULW_ALPHA);
}
finally
{
if (hBitmap != IntPtr.Zero)
{
FormStyleAPI.SelectObject(memDc, oldBits);
FormStyleAPI.DeleteObject(hBitmap);
}
FormStyleAPI.ReleaseDC(IntPtr.Zero, screenDC);
FormStyleAPI.DeleteDC(memDc);
}
}

四、最终方案的效果和源码

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小菜鸟009
2012-06-13
知道答主
回答量:25
采纳率:0%
帮助的人:12.5万
展开全部
可以设置边框阴影属性。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ainidewc123
2012-06-05 · 超过21用户采纳过TA的回答
知道答主
回答量:221
采纳率:0%
帮助的人:92.1万
展开全部
属性
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式