问题 I have Xamarin.Forms project. I have MasterDetailPage inside NavigationPage. I set icon property of the MasterDetailPage so that icon is supposed to be set as the top left position on the navigation bar. But it does not work. public partial class App : Application { public App() { InitializeComponent(); var masterDetailpage = new MasterDetailPage { Icon = "menuIcon.png", Master = new Page { Title = "Sample"}, Detail = new Page() }; MainPage = new NavigationPage(masterDetailpage); } } This