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

drawHoverStateBackground() private method

private drawHoverStateBackground ( 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 drawHoverStateBackground(System.Windows.Forms.PaintEventArgs e,
            LinearGradientMode mode, ref Rectangle newRect,
            int tmpSoundCornerRadius,
            GraphicsPath graphPathShadow,
            GraphicsPath graphPath)
        {
            drawShadow(e, tmpSoundCornerRadius, graphPathShadow);
            drawBackground(e, _HoverBorderColor, _HoverColorA, _HoverColorB, ref newRect, graphPath);
        }