How to do the undo and redo operations in the InkCanvas UWP?

320 Views Asked by At

I want to do the Undo and Redo operations in the InkCanvas. How to do it?

how to get the strokes on the PointerReleasing. I have tried the code

path = new InkCanvas()
        {
            Height = mImageEditor.imageEditorPanel.ActualHeight,
            Width = mImageEditor.imageEditorPanel.ActualWidth
        };
        CoreInkIndependentInputSource core = CoreInkIndependentInputSource.Create(path.InkPresenter);
        core.PointerReleasing += Core_PointerReleasing;

        path.InkPresenter.InputDeviceTypes = Windows.UI.Core.CoreInputDeviceTypes.Mouse 
                                            | Windows.UI.Core.CoreInputDeviceTypes.Touch;
        InkDrawingAttributes inkDrawingAttributes = new InkDrawingAttributes();
        inkDrawingAttributes.Color = Windows.UI.Colors.Blue;
        inkDrawingAttributes.Size = new Size(8, 8);
        path.InkPresenter.UpdateDefaultDrawingAttributes(inkDrawingAttributes);
        var value = path.InkPresenter.StrokeContainer.GetStrokes();
        this.Children.Add(path);

I am getting this exception, so i can't able to get the strokes on pointer releasing event. enter image description here

How to do the Undo and Redo operations? Anyone please suggest me.

0

There are 0 best solutions below