我有PathGeometry
定义的虚线路径,如下所示:
<Path Stretch="Fill"
StrokeDashArray="20 10"
Stroke="Black">
<Path.Data>
<PathGeometry Figures="M 0,0 M 0.5,0 V 1 M 1,1">
</PathGeometry>
</Path.Data>
</Path>
但是当我调整窗口数时,由于StrokeDashArray
定义,破折号增加了。
调整大小期间可以设置固定数量的短划线?例如,破折号和间隙的4个破折号或参数长度。像:长度等于整个路径的1/4?
我尝试更改ScaleTransform
的{{1}},但它会影响整个PathGeometry
,是的,我读了this个问题,这是另一个问题。