LSLEditor/source/Docking/DummyControl.cs
2022-11-20 07:05:44 -07:00

13 lines
198 B
C#

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