Xamarin形成Svg渐变背景

时间:2016-09-12 10:23:47

标签: svg xamarin.forms

所以即时尝试实现svg gradiant背景图像但是当我设置svg图像时它只显示纯色(渐变只是不显示)。

这是我使用的代码,我在常规的svg图像上测试它并且工作正常,但每当我添加渐变svg文件时都不起作用。

public App()
{
    // The root page of your application
    MainPage = new ContentPage
    {
        Content = new StackLayout
        {
            BackgroundColor = Color.White,
            VerticalOptions = LayoutOptions.FillAndExpand,
            Children =
            {
                new SvgImage
                {
                    SvgPath = "SVG_Test.Images.drawing.svg",
                    SvgAssembly = typeof(App).GetTypeInfo().Assembly,
                    HeightRequest = 1000,
                    WidthRequest = 500
                }
            }
        }
    };
}

有人能指出我正确的方向吗?

0 个答案:

没有答案