コード例 #1
0
        public static Page GetMainPage()
        {
            var stack = new StackLayout {
                Padding = 10,
                Spacing = 10
            };

            for (int i = 0; i < 10; i++)
            {
                var card = new CardContentView {
                    Padding         = 40,
                    BackgroundColor = Color.Red,
                    CornderRadius   = (float)i,
                    Content         = new Label {
                        Text            = "I am a card: " + i + "!!!",
                        Font            = Font.SystemFontOfSize(NamedSize.Large),
                        VerticalOptions = LayoutOptions.Center
                    }
                };

                stack.Children.Add(card);
            }

            return(new NavigationPage(new ContentPage {
                Content = new ScrollView
                {
                    Content = stack
                },
                Title = "Card View Forms!"
            }));
        }
コード例 #2
0
		public static Page GetMainPage ()
		{	




					
			var stack = new StackLayout {
				Padding = 10,
				Spacing = 10
			};

			for (int i = 0; i < 10; i++) {

                var panel = new StackLayout();
                panel.Children.Add(new Label
                {
                    Text = "I am a card: " + i + "!!!",
                    Font = Font.SystemFontOfSize(NamedSize.Large),
                    VerticalOptions = LayoutOptions.Center
                });
                panel.Children.Add(new Label
                {
                    Text = "Row 2",
                    Font = Font.SystemFontOfSize(NamedSize.Large),
                    VerticalOptions = LayoutOptions.Center
                });

                var card = new CardContentView {
					Padding = 40,
					CornderRadius = 10,
					Content = panel
				};

				stack.Children.Add (card);

			}

			return new NavigationPage(new ContentPage { 
				Content = new ScrollView
				{
					Content = stack
				},
				Title = "Card View Forms!"
			});
		}