Applabtodotesting.Core.MyPage.MyPage C# (CSharp) Метод

MyPage() публичный Метод

public MyPage ( ) : System
Результат System
        public MyPage()
        {
            var button = new Button {
                Text = "Click Me!",
                VerticalOptions = LayoutOptions.CenterAndExpand,
                HorizontalOptions = LayoutOptions.CenterAndExpand,
            };

            int clicked = 0;
            button.Clicked += (s, e) => button.Text = "Clicked: " + clicked++;

            Content = button;
        }
MyPage