标签: xamarin.ios xamarin.forms
如何在xamarin Forms中的页面标题上绑定图像?
我需要在页面标题上绑定一个小的24px图像图标。应用标题名称带徽标。
答案 0 :(得分:0)
在ContentPage构造函数中尝试:
ToolbarItem ti = new ToolbarItem(); ti.Icon = "logo.png"; this.ToolbarItems.Add(ti);