I am pretty much new to Xamarin forms. I am trying to add toolbar items to content page.
I am using IPAD Air as deployment device and used sever iPhone/ipad simulators as well. I referred the XamarinForms-Mobile App pdf document. Though its a basic, i am not sure, why i am not able to see it in device. Please help me where i am making the mistake.
public partial class SamplePage : ContentPage { public SamplePage() { //Toolbar items ToolbarItem scanItem = new ToolbarItem (); scanItem.Name = "Scan"; scanItem.Order = ToolbarItemOrder.Primary; ToolbarItem settingsItem = new ToolbarItem (); settingsItem.Name = "Settings"; settingsItem.Order = ToolbarItemOrder.Primary; ToolbarItems.Add (scanItem); ToolbarItems.Add (settingsItem); } }
App.cs
public class App { public static Page GetMainPage () { return new SamplePage (); } }
Tried xaml way of doing it as well. But no result. Content page is blank.