namespace WeifenLuo.WinFormsUI.Docking { /// /// DockPanel Suite theme interface. /// public interface ITheme { /// /// Applies the specified theme to the dock panel. /// /// The dock panel. void Apply(DockPanel dockPanel); } }