private void ResizeGroupBox(int newWidth, int newHeight) { myGroupBox.Width = newWidth; myGroupBox.Height = newHeight; myGroupBox.PerformLayout(); }
public class MyCustomControl : Control { private ListPackage Library: System.Windows.Forms (part of the .NET Framework)_childControls = new List (); public void AddControl(Control newControl, int index) { _childControls.Insert(index, newControl); this.Controls.Add(newControl); this.PerformLayout(); } }