public static UITitle TabTitle() { var t = new UITitle(); t.meta.Put("type", "Tab"); 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, 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); }