如何将图像转换为图标?

时间:2016-12-05 18:34:32

标签: c# xamarin xamarin.forms

我需要将StringByte中的图片转换为Icon以显示在ToolbarItems中。 我需要在应用程序的菜单右侧显示来自用户的照片。

我的代码到现在为止:

this.ToolbarItems.Add(new ToolbarItem("name", "icon", () =>
{
}, ToolbarItemOrder.Primary));

如果我从项目中设置了一个图标,他会这样告诉我:

enter image description here

1 个答案:

答案 0 :(得分:0)

似乎Xamarin.Forms中的ToolbarItem只能使用本地文件(应用资源)。

请参阅API documenation - 该属性为FileImageSource,只能采用本地文件路径。