MindFusion.Diagramming for .NET MAUI Releases

Released: Dec 9, 2023

Updates in 1.1.0

Features

  • Undo / redo support - The Diagram now contains an UndoManager object that tracks changes for later undo or redo. Set its UndoEnabled property to true, and UndoManager will collect Command objects representing interactive or programmatic actions in its History collection.
    • Multiple changes could be recorded as a single undoable operation by means of the CompositeCmd class and StartComposite method.
    • It is also possible to create custom undoable operations by deriving from the Command class...