Ejemplo n.º 1
0
 public static void insertBefore(ContainerComponent parent, UnityComponent child, UnityComponent beforeChild)
 {
     child.SetParent(parent, beforeChild);
     parent.ScheduleLayout();
 }
Ejemplo n.º 2
0
 public static void appendChildToContainer(HostComponent parent, UnityComponent child)
 {
     child.SetParent(parent);
     parent.ScheduleLayout();
 }