chenn
2025-04-11 e98de937b28d42493de5dea6365c853d6b412d3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Enum.Crown;
using System.Collections.Generic;
using System.Drawing;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Docking.Crown
{
    #region DockRegionStateDocking
 
    public class DockRegionState
    {
        #region Property Region
 
        public DockArea Area { get; set; }
 
        public Size Size { get; set; }
 
        public List<DockGroupState> Groups { get; set; }
 
        #endregion
 
        #region Constructor Region
 
        public DockRegionState()
        {
            Groups = new List<DockGroupState>();
        }
 
        public DockRegionState(DockArea area) : this()
        {
            Area = area;
        }
 
        public DockRegionState(DockArea area, Size size) : this(area)
        {
            Size = size;
        }
 
        #endregion
    }
 
    #endregion
}