Example #1
0
 public ContainerControl(ContainerControl parent = null) : base(parent)
 {
     Controls                 = new List <Control>();
     LayoutEngine             = new LayoutEngine();
     LayoutEngine.Destination = this;
     Scroll       = new Point();
     FocusControl = null;
 }
Example #2
0
 protected void RelocateChildren()
 {
     LayoutEngine.Run(Scroll.Left, Scroll.Top);
 }