当尝试从SVG转换为XAML时,Inkscape似乎给了我这个错误。这是我最初的SVG路径之一。
<path id="1" fill="none" stroke="black" d="M1568 1873 1568 1922 1617 1922 1617 1873 "/>
这是生成的XAML路径。
<Path xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Name="1" Stroke="#000000">
<Path.Data>
<PathGeometry Figures="M1568 1873 1568 1922 1617 1922 1617 1873 " FillRule="NonZero"/>
</Path.Data>
</Path>
在将路径“ id”转换为“名称”之后,似乎无法读取整数“ 1”,但仍然可以读取字母字符。转换后,还有其他保留ID的方法吗?