using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace DarkWynter.App { public class ViewsPanel : Panel { public ViewsPanel() { this.SuspendLayout(); this.ResumeLayout(false); this.PerformLayout(); } } }