using System; using System.Windows.Forms; namespace LayoutManager{ public interface ILayoutManager { Control Control {get; set;} void DoLayout(); void ControlAdded(System.Windows.Forms.Control c); void ControlRemoved(System.Windows.Forms.Control c); } }