Released: Nov 9, 2025
2025.R2 での更新項目
機能
MindFusion Diagramming
- Paged Containers
- Navigation between pages is handled by scroll arrows in the caption bar, allowing users to cycle through the pages sequentially. For faster access, users can also double-click the container's caption to open an in-place combo box listing available page titles, enabling direct navigation to any page. The node's Caption automatically displays the Title of newly activated ContainerPage.
- The appearance of pager arrows can be fully customized by implementing a PageIconRenderer and assigning it to the static PageIconRenderer property of Renderers, allowing for custom drawing logic, images, or SVG icons.
- ItemLabel image
- Added a new image property to ItemLabel which lets you display icons along a link's geometry, or add more images to a ShapeNode.
- You can treat label images as clickable icons by handling LinkClicked or NodeClicked events and checking label argument passed to their handlers.
- Miscellaneous
- JSON serialization improvements.
- PatternRouter improvements.
- Improved PdfExporter text export for PDFs rendered in Edge browser.
- Improved padding in BPMN shapes' geometries.
- Visio2013Exporter improvements.
- API changes
- Per-node-type behavior classes have been replaced by generic classes with a factory delegate / lambda parameter. E.g. if you were subclassing LinkShapesBehavior, now you'd have to replace base class with LinkNodesBehavior<ShapeNode>. New classes also let you avoid subclassing if you only need to specify the type of nodes drawn by users.
MindFusion Spreadsheet
- Optimized calculation engine
- Performance in large multi-sheet workbooks has been improved by introducing spatial indexing of cell data, leading to 2-3 times faster initial and incremental formula calculations.
- New Functions
- SUMIFS adds the cells in a range that meet multiple criteria.
- COUNTIFS counts the number of cells specified by a given set of conditions or criteria.
- CONCAT merges text from several ranges and/or individual strings.
- TEXTJOIN combines text from multiple ranges or strings, inserting a specified delimiter between each text value.
- Miscellaneous
- SUMIF / COUNTIF criteria are now case-insensitive for compatibility with Excel.
- [h], [m] and [s] format specifiers allow displaying time totals with more than 24 hours or 60 minutes / seconds respectively.
MindFusion Virtual Keyboard
- Layout Ring
- You can define a sequence of keyboard layouts that can be cycled through by setting the LayoutRing property. Add LayoutRingKey to your layouts to let users cycle through the list. Layouts from this list are automatically assigned to TemplateLayout when user presses the LayoutRingKey, or if you call the SelectLayout method from code.
- The KeyboardLayout class includes two new properties to control the appearance of the LayoutRingKey: Image and Label. One of these is displayed by the key to indicate the next layout in the cycle, following this priority:
- If the next layout has a non-null / empty Image property, that image is displayed.
- If there is no Image assigned to the layout, but the Label property is set, that text is displayed as key's Content.
- If neither Image nor Label is set, the key will display the Unicode keyboard symbol (U+2328) as a fallback.
- SVG Images
- The Image property of Key class can now be set to the file name of an SVG (Scalable Vector Graphics) drawing, in addition to bitmap file formats supported by older versions of the control.
- Miscellaneous
- The Stretch property specifies how the control fills available space in its parent element.
- ImageAlign property of KeyTemplate specifies how images are aligned relatively to keys' bounding rectangles.
- New color schemes added to Theme enumeration.
不具合の修正
MindFusion Diagramming
- Miscellaneous
- JSON serialization fixes.
- PagedContainerNode fixes.
- Fix for items remaining in spatial index if calling some APIs from deleted events.
- Fix for GridRouter not updating spatial index.
MindFusion Spreadsheet