Bloom.SplashScreen.SplashScreen_Paint C# (CSharp) Метод

SplashScreen_Paint() приватный Метод

private SplashScreen_Paint ( object sender, PaintEventArgs e ) : void
sender object
e PaintEventArgs
Результат 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);
        }