source:
branches/2839_HiveProjectManagement/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.7.0/WinFormsUI-2.7.0/Docking/DummyControl.cs
Last change on this file was 8616, checked in by mkommend, 12 years ago | |
---|---|
File size: 222 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Windows.Forms; |
3 | |
4 | namespace 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.