2017-06-29 58 views
0

我有一个svg,我在Inkscape中打开并保存为xaml。当我看到我看到的xaml时,xaml缺少一些元素。有没有办法将这个文件保存到xaml?或者,Inkscape中有没有一种方法可以修改元素,从而避免错误发生?Inkscape不保存正确的xaml

这里是我的SVG:

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480"> 
    <defs> 
    <path id="a" fill="#ffde00" d="M-.588.81L0-1 .588.81-.952-.31H.952z"/> 
    </defs> 
    <path d="M0 0h640v480H0z" fill="#de2910"/> 
    <use xlink:href="#a" transform="matrix(71.9991 0 0 72 119.999 120)" width="30" height="20"/> 
    <use xlink:href="#a" transform="matrix(-12.33562 -20.5871 20.58684 -12.33577 240.291 47.996)" width="30" height="20"/> 
    <use xlink:href="#a" transform="matrix(-3.38573 -23.75998 23.75968 -3.38578 287.95 95.796)" width="30" height="20"/> 
    <use xlink:href="#a" transform="matrix(6.5991 -23.0749 23.0746 6.59919 287.959 168.012)" width="30" height="20"/> 
    <use xlink:href="#a" transform="matrix(14.9991 -18.73557 18.73533 14.99929 239.933 216.054)" width="30" height="20"/> 
</svg> 

这里所产生的XAML:

<?xml version="1.0" encoding="UTF-8"?> 
<!--This file is NOT compatible with Silverlight--> 
<Viewbox xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Stretch="Uniform"> 
    <Canvas Name="svg17" Width="640" Height="480"> 
    <Canvas.RenderTransform> 
     <TranslateTransform X="0" Y="0"/> 
    </Canvas.RenderTransform> 
    <Canvas.Resources> 
     <Path xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Name="a" Fill="#FFFFDE00" x:Key="a"> 
     <Path.Data> 
      <PathGeometry Figures="M-.588.81L0-1 .588.81-.952-.31H.952z" FillRule="NonZero"/> 
     </Path.Data> 
     </Path> 
    </Canvas.Resources> 
    <!--Unknown tag: metadata--> 
    <!--Unknown tag: sodipodi:namedview--> 
    <Path xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Name="path5" Fill="#FFDE2910"> 
     <Path.Data> 
     <PathGeometry Figures="M0 0h640v480H0z" FillRule="NonZero"/> 
     </Path.Data> 
    </Path> 
    </Canvas> 
</Viewbox> 

你可以看到,有5个的XLink:HREF被丢失在输出中。

+0

xlink:href attribs不会被移植到期望的行为。 SVG不是XAML。 –

+0

难道你不这样认为,在xaml文件中使用资源“a”会很容易。我手边没有准确的语法,但我认为这应该也可以在xaml中使用。 – MTR

+0

这是,但你必须明白,SVG是一个不同的野兽。您仍然可以从Path数据元素([示例])获取事件等(https://stackoverflow.com/questions/43350165/is-there-any-way-to-make-geometrydrawing-interactive-from-the-ui或者 - 如何对LOA/43355097#43355097)) –

回答

0

对于任何有兴趣的人,我在Inkscape中找到了一个解决方法: 只需在所有元素上使用“Unlink Clone”,并且svg中不再有xlinks。