Paint.BrushSizeSelector.Draw C# (CSharp) 메소드

Draw() 공개 메소드

Draw this tool on to the image
public Draw ( bool refreshDisplay ) : void
refreshDisplay bool /// True = we should redraw the entire control /// False = just draw any updates ///
리턴 void
        public override void Draw(bool refreshDisplay)
        {
            if (refreshDisplay == true)
            {
                // Blank out everything
                this.BlankAndRedrawWithBorder();
            }

            this.DrawBrush();

            this.brushSizeGauge.Draw(refreshDisplay);
        }