mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-01 14:49:28 +03:00
25 lines
449 B
C#
25 lines
449 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
public class DarkDockPanel : UserControl
|
|
{
|
|
#region Property Region
|
|
|
|
public IMessageFilter MessageFilter { get; private set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructor Region
|
|
|
|
public DarkDockPanel()
|
|
{
|
|
MessageFilter = new DarkDockResizeFilter(this);
|
|
|
|
BackColor = Colors.GreyBackground;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|