From the course: Xamarin.Forms Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Create a form page with Grid layout

Create a form page with Grid layout - Xamarin Tutorial

From the course: Xamarin.Forms Essential Training

Start my 1-month free trial

Create a form page with Grid layout

- [Narrator] Want to take a look at a couple other pages layouts and controls? So I'm going to come over to my solution and clean this up a little bit, and in my HPlusSports, I'm going to add a new page. So I'm going to Add, New File, use that Forms, Forms ContentPage, and we'll call that OrderForm. This is going to be where we place an order for a particular product and a number of products. And instead of ContentPage, I'm going to actually switch this to TabbedPage. I want to be able to show that we can have that tabbed view. So I'll save that, and if I go open the xaml, one of the things that we have to keep in mind again is that this is a partial class. So the xaml and the C Sharp are going to be combined together to create a single class which means I need to change this to a tabbed page here as well. Then we obviously can't use the ContentPage, but if we do TabbedPage.Children, that's where we get to define…

Contents