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) { Penpen1=newPen(Color.Blue,12); pen1.EndCap=LineCap.Custom; pen1.CustomEndCap=newAdjustableArrowCap(5f,5f,true); Graphicsg1=this.CreateGraphics(); g1.DrawLine(pen1,10,100,100,100); } } }
希望本文所述对大家的C#程序设计有所帮助。