C#画笔Pen用法实例
本文实例讲述了C#画笔Pen用法。分享给大家供大家参考。具体如下:
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
usingSystem.Windows.Forms;
usingSystem.Drawing.Drawing2D;
namespaceWindowsApplication2
{
publicpartialclassForm11:Form
{
publicForm11()
{
InitializeComponent();
}
privatevoidbutton1_Click(objectsender,EventArgse)
{
Penpen=newPen(Color.Blue,12);
pen.EndCap=LineCap.DiamondAnchor;
Graphicsg=this.CreateGraphics();
g.DrawLine(pen,10,50,100,50);
}
}
}
希望本文所述对大家的C#程序设计有所帮助。