Applabtodotesting.TodoItemViewCell.TodoItemViewCell C# (CSharp) 메소드

TodoItemViewCell() 공개 메소드

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