mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 23:59:26 +03:00
40 lines
740 B
C#
40 lines
740 B
C#
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
|
|
namespace DarkUI.Docking
|
|
{
|
|
public class DockRegionState
|
|
{
|
|
#region Property Region
|
|
|
|
public DarkDockArea 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(DarkDockArea area)
|
|
: this()
|
|
{
|
|
Area = area;
|
|
}
|
|
|
|
public DockRegionState(DarkDockArea area, Size size)
|
|
: this(area)
|
|
{
|
|
Size = size;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|