using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar { /// /// Provides data for the Quick Access Toolbar Overflow item rendering events. /// public class QatOverflowItemRendererEventArgs : EventArgs { /// /// Gets or sets the reference to the item being rendered. /// public QatOverflowItem OverflowItem = null; /// /// Gets or sets the reference to graphics object. /// public Graphics Graphics = null; /// /// Creates new instance of the object and initializes it with default values. /// /// Reference to the overflow item being rendered. /// Reference to the graphics object. public QatOverflowItemRendererEventArgs(QatOverflowItem overflowItem, Graphics g) { this.OverflowItem = overflowItem; this.Graphics = g; } } }