mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 07:09:27 +03:00
30 lines
609 B
C#
30 lines
609 B
C#
using System.ComponentModel;
|
|
|
|
namespace DarkUI
|
|
{
|
|
[ToolboxItem(false)]
|
|
public class DarkDocument : DarkDockContent
|
|
{
|
|
#region Property Region
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public new DarkDockArea DockArea
|
|
{
|
|
get { return base.DockArea; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Constructor Region
|
|
|
|
public DarkDocument()
|
|
{
|
|
BackColor = Colors.GreyBackground;
|
|
base.DockArea = DarkDockArea.Document;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|