Inheritance: Xamarin.Forms.ContentView
Esempio n. 1
0
		void CreateLayout()
		{
			_mainCardView = new FixtureCardView (Fixture);
			View = new StackLayout {
				Padding = new Thickness(15,10),
				BackgroundColor = Color.White,
				Children = {
					_mainCardView
				}
			};
		}
Esempio n. 2
0
 void CreateLayout()
 {
     _mainCardView = new FixtureCardView(Fixture);
     View          = new StackLayout {
         Padding         = new Thickness(15, 10),
         BackgroundColor = Color.White,
         Children        =
         {
             _mainCardView
         }
     };
 }