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);
        }