示例#1
0
 public static void insertBefore(ContainerComponent parent, UnityComponent child, UnityComponent beforeChild)
 {
     child.SetParent(parent, beforeChild);
     parent.ScheduleLayout();
 }
示例#2
0
 public static void appendChildToContainer(HostComponent parent, UnityComponent child)
 {
     child.SetParent(parent);
     parent.ScheduleLayout();
 }