ZForge.Controls.ExplorerBar.TaskItem.OnPaintBackground C# (CSharp) Method

OnPaintBackground() protected method

Raises the PaintBackground event
protected OnPaintBackground ( PaintEventArgs e ) : void
e PaintEventArgs A PaintEventArgs that contains the event data
return void
        protected override void OnPaintBackground(PaintEventArgs e)
        {
            // don't let windows paint our background as it will be black
            // (we'll paint the background in OnPaint instead)
            //base.OnPaintBackground (pevent);
        }