博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#--GDI+的PathGradientBrush类的使用
阅读量:6155 次
发布时间:2019-06-21

本文共 661 字,大约阅读时间需要 2 分钟。

可以用PathGradientBrush类进行路径的渐变填充,如:

 
1
private
void
Form1_Paint(
object
sender, PaintEventArgs e)
2
{
3
Graphics g
=
e.Graphics;
4
GraphicsPath gp
=
new
GraphicsPath();
5
6
gp.AddLine(
10
,
10
,
110
,
15
);
7
gp.AddLine(
110
,
15
,
110
,
96
);
8
gp.AddLine(
100
,
96
,
15
,
110
);
9
gp.CloseFigure();
10
11
g.FillRectangle(Brushes.White,
this
.ClientRectangle);
12
g.SmoothingMode
=
SmoothingMode.AntiAlias;
//
反锯齿
13
 
14
PathGradientBrush pgb
=
new
PathGradientBrush(gp);
15
pgb.CenterColor
=
Color.White;
16
pgb.SurroundColors
=
new
Color[]
17
{
18
Color.Blue
19
};
20
g.FillPath(pgb,gp);
21
g.DrawPath(Pens.Black,gp);
22
pgb.Dispose();
23
gp.Dispose();
24
}

图形为:

2011051121131094.jpg

转载地址:http://mjffa.baihongyu.com/

你可能感兴趣的文章
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
使用FMDB最新v2.3版本教程
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
linux后台运行程序
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>