App8.App.GetMainPage C# (CSharp) Method

GetMainPage() public static method

public static GetMainPage ( ) : Page
return Page
		public static Page GetMainPage() {
		    var cell = new DataTemplate( typeof ( TextCell ) );
            cell.SetBinding(TextCell.TextProperty, "Title");
            cell.SetBinding(TextCell.DetailProperty, "Creator");

		    var listView = new ListView {
		        ItemsSource = _items,
                ItemTemplate = cell
		    };

			return new ContentPage
			{
				Content = listView
			};
		}
	}