public UISection NewSection() { var t = new UISection(); t.Sections = this.Sections; this.Sections.Add(t); return(t); }
public static UISection Create() { var t = new UISection(); t.Sections = new List <UISection>(); t.Sections.Add(t); return(t); }
public UISection NewSection(Array data) { var t = new UISection(); t.Sections = this.Sections; this.Sections.Add(t); t._data = data; return(t); }
public UISection NewSection(Array data) { var t = new UISection(); t.Sections = this.Sections; t.parent = this.parent ?? this; this.Sections.Add(t); t.data.AddRange(data); return(t); }
public UISection NewSection() { var t = new UISection(); t.parent = this.parent ?? this; t.Sections = this.Sections; // t._header= this.Sections.Add(t); return(t); }
public static UISection Create(UITitle title) { var t = new UISection(); t.Sections = new List <UISection>(); t.Sections.Add(t); t._title = title; WebMeta meta = new WebMeta(); return(t); }
public static UISection Create(UITitle title, UIFooter footer) { var t = new UISection(); t.Sections = new List <UISection>(); t.Sections.Add(t); WebMeta meta = new WebMeta(); t._uifooter = footer; t._title = title; return(t); }
public static UISection Create(UIHeader header, UIFooter footer) { var t = new UISection(); t.Sections = new List <UISection>(); t.Sections.Add(t); WebMeta meta = new WebMeta(); t._uiheaders = header; t._uifooter = footer; return(t); }
public static UISection Create(UIHeader header, UITitle title) { var t = new UISection(); t.Sections = new List <UISection>(); t._componens = new List <UIView>(); t.Sections.Add(t); t._title = title; WebMeta meta = new WebMeta(); t._uiheaders = header; return(t); }