c#怎么画自定义线型

 我来答
也许是真的961
2018-01-02 · TA获得超过2783个赞
知道小有建树答主
回答量:4785
采纳率:10%
帮助的人:147万
展开全部
线时定义pen的宽度就可以了,示例如下:
在窗口的print事件中给窗体画虚线:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics; //Graphics g = this.CreateGraphics();
Pen p = new Pen(Color.Black, 2); //黑色画笔 2宽度.
p.DashStyle = System.Drawing.Drawing2D.DashStyle.DashDot; //系统中的虚线样式
g.DrawLine(p, 10, 10, 500, 10);
p = new Pen(Color.Black, 4); //黑色画笔 4宽度.
p.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom; //自定义样式
p.DashPattern = new float[] { 5, 5 };
g.DrawLine(p, 10, 30, 500, 30);
p = new Pen(Color.Black, 8); //黑色画笔 8宽度.
p.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
p.DashPattern = new float[] { 5, 5 };
g.DrawLine(p, 10, 50, 500, 50);
}

效果如下:

Pen 构造函数 (Color, Single)说明:用指定的 Color 和 Width 属性初始化 Pen 类的新实例。命名空间: System.Drawing程序集: System.Drawing(在 System.Drawing.dll 中)语法public Pen( Color color, float width)参数color类型:System.Drawing.ColorColor 结构,指示此 Pen 的颜色。width类型:System.Single指示此 Pen 的宽度的值。备注 Color 属性设置为 color 参数指定的颜色。 Width 属性设置为在 width 参数中指定的值。 width 为 0 将导致 Pen 的绘图效果呈现为宽度为 1 的形式。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式