LSLEditor/trunk/Docking/DummyControl.cs
thoysg 573823c181 big transformation , using DockPanels now
it feels good to me!
-Thoys

git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@26 3f4676ac-adda-40fd-8265-58d1435b1672
2010-08-02 14:35:46 +00:00

13 lines
211 B
C#

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