pascalabcnet/WeifenLuo/WinFormsUI/Docking/DummyControl.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

14 lines
209 B
C#

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