Skip to main content
How to make Tabbed Page in xamarin crossplatform
Make this page in xaml
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyApp.Tabbed_Sample"
xmlns:pages="clr-namespace:MyApp;assembly=MyApp" Title="User Details" >
</TabbedPage>
xaml.cs
public Tabbed_Sample(string obj)
{
InitializeComponent();
this.Children.Add(new DashBoardPage(obj));
this.Children.Add(new Edhucation_Details(obj));
}
Comments
Post a Comment