13 lines
198 B
C#
13 lines
198 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LSLEditor.Docking
|
|
{
|
|
internal class DummyControl : Control
|
|
{
|
|
public DummyControl()
|
|
{
|
|
SetStyle(ControlStyles.Selectable, false);
|
|
}
|
|
}
|
|
}
|