using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar { /// /// Provides data for the Quick Access Toolbar Customize Item rendering events. /// public class QatCustomizeItemRendererEventArgs : EventArgs { /// /// Gets or sets the reference to the item being rendered. /// public QatCustomizeItem CustomizeItem = 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 customize item being rendered. /// Reference to the graphics object. public QatCustomizeItemRendererEventArgs(QatCustomizeItem customizeItem, Graphics g) { this.CustomizeItem = customizeItem; this.Graphics = g; } } }