Rilasci di MindFusion.Diagramming for WPF
Released: Apr 3, 2026
Aggiornamenti in V4.3
Funzionalità
- ItemListView Control
- ItemListView supersedes NodeListView and lets you show both nodes and links in the list. Items can be added or removed using the Items property of base ListView. DefaultNodeSize property from NodeListView is called NewInstanceSize in the new class. The AutoConnectLinks and AutoConnectDistance properties control whether links created via drag-and-drop should connect to nearby nodes in the target diagram. For compatibility with legacy code, NodeListView won't be...
Released: Jan 9, 2026
Aggiornamenti in V4.2.2
Funzionalità
- Tag Serialization
- Due to the removal of BinaryFormatter in .NET 9+, complex Tag and Id objects (class or struct instances) are now saved using System.Xml.Serialization.XmlSerializer when saving a diagram to XML. SerializeTag and DeserializeTag still allow you to implement custom serialization.
- Complex Tag and ID objects (class or struct instances) are now saved using System.Text.Json.JsonSerializer when saving a diagram to JSON. JsonSerializeTag and JsonDeserializeTag still allow...
Released: Oct 16, 2025
Aggiornamenti in V4.2.1
Funzionalità
- Improved padding in BPMN shape geometries.
- Visio2013Exporter improvements.
Correzioni
- Fix for items remaining in spatial index if calling some APIs from deleted events.
- Fix for GridRouter not updating spatial index.
- PagedContainerNode fixes.
Released: Sep 10, 2025
Aggiornamenti in V4.2
Funzionalità
- Added Paged Containers
- PagedContainerNode is a subclass that organizes its child nodes into a collection of pages, represented by objects. This allows for the creation of more organized diagrams where nodes can be grouped into logical views within a single container. Only the nodes belonging to the currently active page are rendered and participate in user interactions.
- Navigation between pages is now handled by scroll arrows in the caption bar, allowing users to cycle through the...
Released: Apr 15, 2025
Aggiornamenti in V4.1.9
Correzioni
- Fixed an issue where 'Folded' property container bindings were not triggering updates.
- Fixed a problem where child visibility changes were not updating a container's view.
- Fixed an error with link displacement when calling the 'Arrange' method in a nested container.
- Fixed a problem where 'FlipX' and 'FlipY' were not flipping shape decorations.
- Fixed an issue where changing a node's Template dynamically did not update the view.
Released: Mar 16, 2025
Aggiornamenti in V4.1.8
Correzioni
- Fixed line thickness in exported SVG when diagram's MeasureUnit is set to Pixel.
- TableNode performance fixes for when LightweightPresenters is enabled.
- Fix for link opacity changing after moving a container when ModificationEffect is set to MoveShades.
Released: Feb 27, 2025
Aggiornamenti in V4.1.7
Funzionalità
- SvgExporter adds 'stroke-dashoffset' and 'stroke-linecap' attributes for corresponding WPF DashStyle values.
- Item presenters now bind to the EffectProperty inherited from UIElement, letting you apply standard WPF effects to diagram items (such as DropShadowEffect).
Correzioni
- Fix for ModifierKeyActions not applied in MoveNodes behavior.
- Fixed Zoom Behavior when using DiagramView.
Released: Feb 6, 2025
Aggiornamenti in V4.1.6
Funzionalità
- Customize Node Action Icons
- The Renderers class lets you customize the appearance a nodes fold, scroll and collapse icons, by providing DrawingContext drawing callbacks, bitmap images or SVG drawings:
- Set ExpandIconRenderer to override the appearance of collapse / expand buttons displayed by Expandable nodes.
- Set ScrollIconRenderer to override the appearance of scroll arrows displayed by Scrollable tables.
- Set FoldIconRenderer to override the appearance of fold / unfold buttons...
Released: Dec 20, 2024
Aggiornamenti in V4.1.5
Correzioni
- TabbedDiagramView no longer interprets underscores in Title property of pages as ALT shortcut.
- Fix for ItemRemoved being raised twice.
Released: Dec 9, 2024
Aggiornamenti in V4.1.4
Funzionalità
- Set EnableVirtualization to false to stop a DiagramView's UI virtualization.
- DiagramView now honors HorizontalContentAlignment and VerticalContentAlignment properties inherited from base Control class, letting you align or center a smaller diagram inside the view.
- DataContext of a ToolTip control assigned to items is now set to the item that displays it.
- New SvgExporter Export overload lets you export an already rendered part of DiagramView quicker than overloads taking a Diagram...