Ejemplo n.º 1
0
 protected RenderedTextList(AControl parent) : base(parent)
 {
 }
Ejemplo n.º 2
0
 // ============================================================================================================
 // Child control methods
 // ============================================================================================================
 public T AddControl <T>(AControl c, int page = 0) where T : AControl
 {
     c.Page = page;
     Children.Add(c);
     return(LastControl as T);
 }
Ejemplo n.º 3
0
 public AControl AddControl(AControl c, int page = 0)
 {
     c.Page = page;
     Children.Add(c);
     return(LastControl);
 }
Ejemplo n.º 4
0
 // ============================================================================================================
 // Ctor, Init, Dispose, Update, and Draw
 // ============================================================================================================
 protected AControl(AControl parent)
 {
     Parent        = parent;
     Page          = 0;
     UserInterface = Service.Get <UserInterfaceService>();
 }