Paint.PictureStateManager.LoadSavePointData C# (CSharp) Méthode

LoadSavePointData() private méthode

Loads the save point data. Loads the CanvasRecorder file from the working folder Gets the image from the specific in memory rendertarget and draws that to the master canvas (rendertarget)
private LoadSavePointData ( ) : void
Résultat void
        private void LoadSavePointData()
        {
            var canvasRecorderFile = this.filenameResolver.WorkingCanvasRecorderFilename(this.ImageStateData.CurrentSavePoint);
            this.canvasRecorder.Load(canvasRecorderFile);

            this.renderTargetHandler.RestoreSavePoint(this.ImageStateData.CurrentSavePoint);
        }