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