introvoyz041's picture
Migrated from GitHub
b1b3bae verified
using System;
using System.Windows.Forms;
namespace WeifenLuo.WinFormsUI.Docking
{
internal class DummyControl : Control
{
public DummyControl()
{
SetStyle(ControlStyles.Selectable, false);
}
}
}