- bindable
- The Xamarin.Forms.BindableObject whose title icon is being set.
- value
- The FileImageSource of the icon.
C# Example
public class MyPage : NavigationPage
{
public MyPage ()
{
var myContentPage = new MyContentPage (Color.White);
this.Push (myContentPage);
var s = "icon-45.png";
NavigationPage.SetTitleIcon (myContentPage, s);
}
}
![]()