如何在xamarin Forms中的页面标题上绑定图像?

时间:2017-01-22 00:30:54

标签: xamarin.ios xamarin.forms

如何在xamarin Forms中的页面标题上绑定图像?

我需要在页面标题上绑定一个小的24px图像图标。应用标题名称带徽标。

1 个答案:

答案 0 :(得分:0)

在ContentPage构造函数中尝试:

ToolbarItem ti = new ToolbarItem();
ti.Icon = "logo.png";
this.ToolbarItems.Add(ti);