Xamarin标签页面未显示跨平台的图标

时间:2016-06-29 10:12:52

标签: xamarin xamarin.forms

我正在使用:

在Xamarin中创建一个标签页
class UITabbedPages : TabbedPage
{
    public UITabbedPages()
    {
        var landingPage = new FirstPage();
        landingPage.Icon = new FileImageSource() { File = FontAwesome.FARocket };
        landingPage.Title = "FirstPage";

        var location = new 2ndPage();
        location.Icon = FontAwesome.FABars;
        location.Title = "Location"

        this.Children.Add(landingPage);
        this.Children.Add(location);
    }
}

我使用了两个不同的东西来显示图标,但这些图标都不起作用。

0 个答案:

没有答案