예제 #1
0
파일: Gui.cs 프로젝트: onamoni/edriven-gui
 /// <summary>
 /// Adds a child to the container to the specified index
 /// </summary>
 /// <param name="child">A child</param>
 /// <param name="index">Index</param>
 public DisplayListMember AddChildAt(DisplayListMember child, int index)
 {
     return(Stage.AddContentChildAt(child, index));
 }