ATMLCommonLibrary.controls.awb.AWBButton.drawInactiveStateBackground C# (CSharp) Method

drawInactiveStateBackground() private method

private drawInactiveStateBackground ( System e, LinearGradientMode mode, Rectangle &newRect, int tmpSoundCornerRadius, GraphicsPath graphPathShadow, GraphicsPath graphPath ) : void
e System
mode LinearGradientMode
newRect System.Drawing.Rectangle
tmpSoundCornerRadius int
graphPathShadow System.Drawing.Drawing2D.GraphicsPath
graphPath System.Drawing.Drawing2D.GraphicsPath
return void
        private void drawInactiveStateBackground( System.Windows.Forms.PaintEventArgs e, 
            LinearGradientMode mode,
            ref Rectangle newRect,
            int tmpSoundCornerRadius,
            GraphicsPath graphPathShadow,
            GraphicsPath graphPath)
        {
            drawShadow(e, tmpSoundCornerRadius, graphPathShadow);
            drawBackground(e, Color.DarkGray, Color.Gray, Color.Gray, ref newRect, graphPath);
        }