mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-01 14:49:28 +03:00
37 lines
607 B
C#
37 lines
607 B
C#
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
[ToolboxItem(false)]
|
|
public class DarkDockContent : UserControl
|
|
{
|
|
#region Event Region
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
#region Field Region
|
|
|
|
private string _dockText;
|
|
|
|
#endregion
|
|
|
|
#region Property Region
|
|
|
|
public string DockText
|
|
{
|
|
get { return _dockText; }
|
|
set
|
|
{
|
|
_dockText = value;
|
|
Invalidate();
|
|
// TODO: raise event for parent tabs
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|