Bloom.SplashScreen.SplashScreen_Paint C# (CSharp) Method

SplashScreen_Paint() private method

private SplashScreen_Paint ( object sender, PaintEventArgs e ) : void
sender object
e PaintEventArgs
return void
        private void SplashScreen_Paint(object sender, PaintEventArgs e)
        {
            var borderWidth = 0;
            var color = Palette.BloomRed;
            ControlPaint.DrawBorder(e.Graphics, ClientRectangle, color,borderWidth, ButtonBorderStyle.Solid,
                                        color,borderWidth, ButtonBorderStyle.Solid,
                                        color,borderWidth, ButtonBorderStyle.Solid,
                                        color,borderWidth, ButtonBorderStyle.Solid);
        }