我需要将String
或Byte
中的图片转换为Icon以显示在ToolbarItems中。
我需要在应用程序的菜单右侧显示来自用户的照片。
我的代码到现在为止:
this.ToolbarItems.Add(new ToolbarItem("name", "icon", () =>
{
}, ToolbarItemOrder.Primary));
如果我从项目中设置了一个图标,他会这样告诉我:
答案 0 :(得分:0)
似乎Xamarin.Forms中的ToolbarItem
只能使用本地文件(应用资源)。
请参阅API documenation - 该属性为FileImageSource
,只能采用本地文件路径。