pascalabcnet/WeifenLuo/WinFormsUI/Docking/DummyControl.cs

14 lines
209 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
using System;
using System.Windows.Forms;
namespace WeifenLuo.WinFormsUI.Docking
{
internal class DummyControl : Control
{
public DummyControl()
{
SetStyle(ControlStyles.Selectable, false);
}
}
}