标签:code color end pre col ash 虚线 pen orb
//虚线
DoubleCollection dc = new DoubleCollection();
dc.Add(2);
DashStyle dashstyle = new DashStyle();
dashstyle.Dashes = dc;
Pen renderPen = new Pen(new SolidColorBrush(Colors.Navy), 1.5);
renderPen.DashStyle = dashstyle;
renderPen.DashCap = PenLineCap.Round;
标签:code color end pre col ash 虚线 pen orb
原文地址:https://www.cnblogs.com/ives/p/14932113.html