You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,14 @@
4
4
5
5
> - Breaking Changes:
6
6
> - Features:
7
-
>- Added OutlineBrush and OutlineThickness dependency properties to BaseConnection to support increasing the selection area without increasing the stroke thickness
8
7
> - Bugfixes:
9
8
9
+
#### **Version 6.4.0**
10
+
11
+
> - Features:
12
+
>- Added OutlineBrush and OutlineThickness dependency properties to BaseConnection to support increasing the selection area without increasing the stroke thickness
13
+
>- Added IsAnimatingDirectionalArrows and DirectionalArrowsAnimationDuration dependency properties to BaseConnection to support controlling the animation from XAML
> - Added a CuttingLine control that removes intersecting connections
23
-
> - Added CuttingLineStyle, CuttingStartedCommand, CuttingCompletedCommand, IsCutting, EnableCuttingLinePreview and CuttingConnectionTypes to NodifyEditor
24
-
> - Added EditorGestures.Editor.Cutting and EditorGestures.Editor.CancelAction
25
-
> - Bugfixes:
26
-
> - Fixed connection styles not inheriting from the BaseConnection style
22
+
> - Added OutlineBrush and OutlineThickness dependency properties to BaseConnection to support increasing the selection area without increasing the stroke thickness
23
+
> - Added IsAnimatingDirectionalArrows and DirectionalArrowsAnimationDuration dependency properties to BaseConnection to support controlling the animation from XAML
/// Inverts the <see cref="ItemContainer"/>s selection in the specified <paramref name="area"/>.
1323
1323
/// </summary>
1324
1324
/// <param name="area">The area to look for <see cref="ItemContainer"/>s.</param>
1325
-
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
1325
+
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
1326
1326
publicvoidInvertSelection(Rectarea,boolfit=false)
1327
1327
{
1328
1328
ItemCollectionitems=Items;
@@ -1356,7 +1356,7 @@ public void InvertSelection(Rect area, bool fit = false)
1356
1356
/// </summary>
1357
1357
/// <param name="area">The area to look for <see cref="ItemContainer"/>s.</param>
1358
1358
/// <param name="append">If true, it will add to the existing selection.</param>
1359
-
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
1359
+
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
@@ -1385,7 +1385,7 @@ public void SelectArea(Rect area, bool append = false, bool fit = false)
1385
1385
/// Unselect the <see cref="ItemContainer"/>s in the specified <paramref name="area"/>.
1386
1386
/// </summary>
1387
1387
/// <param name="area">The area to look for <see cref="ItemContainer"/>s.</param>
1388
-
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
1388
+
/// <param name="fit">True to check if the <paramref name="area"/> contains the <see cref="ItemContainer"/>. <br />False to check if <paramref name="area"/> intersects the <see cref="ItemContainer"/>.</param>
0 commit comments