Paint.PaintApp.Draw C# (CSharp) Method

Draw() protected method

Called everytime we need to redraw the screen
protected Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime /// Allows you to monitor time passed since last draw ///
return void
        protected override void Draw(GameTime gameTime)
        {
            this.pictureStateManager.Draw(this.CanvasTouchPoints);

            base.Draw(gameTime);
        }