Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/WinFormsUI/Docking/DummyControl.cs @ 2508

Last change on this file since 2508 was 2134, checked in by gkronber, 15 years ago

Added up to date source of Weifen Luo dock panel suit in a separate project (and added strong name key). Removed binary versions of Weifen Luo dock panel suite and references to it. #687 (Update AdvancedOptimizationFrontend to use more recent version of Weifen Luo Docking library)

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.