Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Exporter-715/sources/WinFormsUI/Docking/Enums.cs @ 3257

Last change on this file since 3257 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: 1010 bytes
Line 
1using System;
2using System.ComponentModel;
3using System.Windows.Forms;
4
5namespace WeifenLuo.WinFormsUI.Docking
6{
7  [Flags]
8  [Serializable]
9  [Editor(typeof(DockAreasEditor), typeof(System.Drawing.Design.UITypeEditor))]
10  public enum DockAreas
11  {
12    Float = 1,
13    DockLeft = 2,
14    DockRight = 4,
15    DockTop = 8,
16    DockBottom = 16,
17    Document = 32
18  }
19
20  public enum DockState
21  {
22    Unknown = 0,
23    Float = 1,
24    DockTopAutoHide = 2,
25    DockLeftAutoHide = 3,
26    DockBottomAutoHide = 4,
27    DockRightAutoHide = 5,
28    Document = 6,
29    DockTop = 7,
30    DockLeft = 8,
31    DockBottom = 9,
32    DockRight = 10,
33    Hidden = 11
34  }
35
36  public enum DockAlignment
37  {
38    Left,
39    Right,
40    Top,
41    Bottom
42  }
43
44  public enum DocumentStyle
45  {
46    DockingMdi,
47    DockingWindow,
48    DockingSdi,
49    SystemMdi,
50  }
51
52    /// <summary>
53    /// The location to draw the DockPaneStrip for Document style windows.
54    /// </summary>
55    public enum DocumentTabStripLocation
56    {
57        Top,
58        Bottom
59    }
60}
Note: See TracBrowser for help on using the repository browser.