58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Text;
 | 
						|
using System.Drawing;
 | 
						|
 | 
						|
namespace DevComponents.DotNetBar.Rendering
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Defines the color table for the Slider Item in single state.
 | 
						|
    /// </summary>
 | 
						|
    public class Office2007SliderStateColorTable
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part background colors.
 | 
						|
        /// </summary>
 | 
						|
        public GradientColorTable PartBackground = null;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part border color
 | 
						|
        /// </summary>
 | 
						|
        public Color PartBorderColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part border light color
 | 
						|
        /// </summary>
 | 
						|
        public Color PartBorderLightColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part foreground color.
 | 
						|
        /// </summary>
 | 
						|
        public Color PartForeColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part foreground light color.
 | 
						|
        /// </summary>
 | 
						|
        public Color PartForeLightColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the track line color.
 | 
						|
        /// </summary>
 | 
						|
        public Color TrackLineColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the track line light color.
 | 
						|
        /// </summary>
 | 
						|
        public Color TrackLineLightColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the track label color.
 | 
						|
        /// </summary>
 | 
						|
        public Color LabelColor = Color.Empty;
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the track label color when on Slider control.
 | 
						|
        /// </summary>
 | 
						|
        public Color SliderLabelColor = Color.Empty;
 | 
						|
    }
 | 
						|
}
 |