ARKBreedingStats.Pedigree.OnPaint C# (CSharp) 메소드

OnPaint() 보호된 메소드

protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs
리턴 void
        protected override void OnPaint(PaintEventArgs e)
        {
            // paintBase
            base.OnPaint(e);

            e.Graphics.TranslateTransform(AutoScrollPosition.X, AutoScrollPosition.Y);
            if (creature != null)
                drawLines(e.Graphics);
        }