introvoyz041's picture
Migrated from GitHub
b1b3bae verified
namespace WeifenLuo.WinFormsUI.Docking
{
/// <summary>
/// DockPanel Suite theme interface.
/// </summary>
public interface ITheme
{
/// <summary>
/// Applies the specified theme to the dock panel.
/// </summary>
/// <param name="dockPanel">The dock panel.</param>
void Apply(DockPanel dockPanel);
}
}