Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.7.0/WinFormsUI-2.7.0/Docking/DummyControl.cs @ 8616

Last change on this file since 8616 was 8616, checked in by mkommend, 12 years ago

#1939: Added DockPanelSuite 2.7.0 to ExtLibs.

File size: 222 bytes
Line 
1using System;
2using System.Windows.Forms;
3
4namespace WeifenLuo.WinFormsUI.Docking
5{
6  internal class DummyControl : Control
7  {
8    public DummyControl()
9    {
10      SetStyle(ControlStyles.Selectable, false);
11    }
12  }
13}
Note: See TracBrowser for help on using the repository browser.