using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar
{
    /// 
    /// Provides data for the RenderMdiSystemitem event.
    /// 
    public class MdiSystemItemRendererEventArgs : EventArgs
    {
        /// 
        /// Gets or sets Graphics object group is rendered on.
        /// 
        public Graphics Graphics = null;
        /// 
        /// Gets or sets the reference to MdiSystemItem being rendered.
        /// 
        public MDISystemItem MdiSystemItem = null;
        /// 
        /// Creates new instance of the class and initializes it with default values.
        /// 
        /// Reference to graphics object.
        /// Reference to MdiSystemItem being rendered.
        public MdiSystemItemRendererEventArgs(Graphics g, MDISystemItem mdi)
        {
            this.Graphics = g;
            this.MdiSystemItem = mdi;
        }
    }
}