using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar { /// /// Provides data for the Slider item rendering events. /// public class SliderItemRendererEventArgs : EventArgs { /// /// Gets or sets the reference to the item being rendered. /// public SliderItem SliderItem = null; /// /// Gets or sets the reference to graphics object. /// public Graphics Graphics = null; internal ItemPaintArgs ItemPaintArgs = null; /// /// Creates new instance of the object and initializes it with default values. /// /// Reference to the Slider item being rendered. /// Reference to the graphics object. public SliderItemRendererEventArgs(SliderItem item, Graphics g) { this.SliderItem = item; this.Graphics = g; } } }