Applabtodotesting.TodoItemViewCell.TodoItemViewCell C# (CSharp) Method

TodoItemViewCell() public method

public TodoItemViewCell ( ) : System
return 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