File size: 371 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
    }
    

}