public PanelItem(PanelRow row) { Row = row; Type = PanelItemType.EditableText; Width = Row.Panel.DefaultWidth; Height = 0; Editable = true; Visible = true; Optional = false; Label = string.Empty; Text = string.Empty; RequiresValidation = true; AttachToPrevious = false; }
public void Add(PanelRow row) { row.Panel = this; rows.Add(row); }