Applabtodotesting.TodoItemViewCell.TodoItemViewCell C# (CSharp) Méthode

TodoItemViewCell() public méthode

public TodoItemViewCell ( ) : System
Résultat System
        public TodoItemViewCell()
        {
            var lblTitle = new Label { };
            lblTitle.SetBinding (Label.TextProperty, "Title");
            var layout = new StackLayout {
                Orientation = StackOrientation.Horizontal,
                Children = {
                    lblTitle
                }
            };

            this.View = layout;
        }
TodoItemViewCell