Ejemplo n.º 1
0
 public static Element Create(IBaseUIComponent component, PropCollection props = null)
 {
     return(new Element(component, props));
 }
Ejemplo n.º 2
0
        public static Element Create(IBaseUIComponent component, PropCollection props = null)
        {
            var id = "root";

            return(new Element(id, component, props));
        }
Ejemplo n.º 3
0
 private Element(IBaseUIComponent component, PropCollection props = null)
 {
     this.Component = component;
     this.Props     = props;
 }
Ejemplo n.º 4
0
 private Element(string id, IBaseUIComponent component, PropCollection props = null)
 {
     this.Component = component;
     this.Props     = props;
     this.Id        = id;
 }