System.NotSupportedException:SVG元素" style" Xamarin Forms不支持

时间:2016-01-08 18:17:11

标签: c# xaml svg xamarin

我使用this nuget插件使用Xamarin.Forms构建了一个XAML UI。我已按照指南进行了以下布局:

   <Grid VerticalOptions="Center" HorizontalOptions="Center" BackgroundColor="#3DBEAF" >
   <Grid.RowDefinitions>
       <RowDefinition Height="10" />
       <RowDefinition Height="Auto" /> 
   </Grid.RowDefinitions>
   <Grid.ColumnDefinitions>
    <ColumnDefinition Width="10" />
    <ColumnDefinition Width="Auto" />
  </Grid.ColumnDefinitions>
  <abstractions:SvgImage Grid.Row="0" Grid.Column="0" SvgAssembly="{Binding SvgAssembly}" SvgPath="{Binding Logo_Round}" HeightRequest="50" WidthRequest="50" BackgroundColor="White" HorizontalOptions="Center" VerticalOptions="Center"/>
   </Grid>

我遵循了指南。但是,我收到以下错误消息,是什么导致了这个问题,这是我已经完成/可以解决的问题吗?

  

System.NotSupportedException:SVG元素&#34;样式&#34;不受支持     在NGraphics.Custom.Parsers.SvgReader.AddElement(IList`1 list,System.Xml.Linq.XElement e,NGraphics.Custom.Models.Pen inheritPen,NGraphics.Custom.Models.Brushes.BaseBrush inheritBaseBrush)[0x00577] in: 0

0 个答案:

没有答案