Clean up folder structure a bit, move .NET 3rdparty under renderdocui/

This commit is contained in:
baldurk
2015-04-13 12:46:30 +01:00
parent b41b5242d1
commit f06964ea23
104 changed files with 17 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Windows.Forms;
namespace WeifenLuo.WinFormsUI.Docking
{
internal class DummyControl : Control
{
public DummyControl()
{
SetStyle(ControlStyles.Selectable, false);
}
}
}