using System; using System.Windows.Forms; namespace Mesnac.Docking { internal class DummyControl : Control { public DummyControl() { SetStyle(ControlStyles.Selectable, false); } } }