图像中左上角2个红色线段 颜色值有偏差,且线段高度不准确(我设置的是Red,1)。
解决方案:
1、PathGeometry PathFigure LineSegment
2、Stretch设置Fill
<Path
Stretch="Fill"
Stroke="Red"
Visibility="Visible">
<Path.Data>
<PathGeometry>
<PathFigure IsClosed="False" StartPoint="0,6">
<LineSegment Point="12,6" />
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
这样绘制的线段,颜色值准确,线段宽度准确。