This commit is contained in:
TheXamlGuy
2024-06-16 17:25:13 +01:00
parent 02969b3850
commit 8d574362a0
22 changed files with 56 additions and 52 deletions
@@ -21,7 +21,7 @@ public class InvokeNavigationViewItemAction :
{
if (collection is { Count: > 0 } && collection[0] is ISelectable selectable)
{
selectable.Selected = true;
selectable.IsSelected = true;
}
}
}, DispatcherPriority.ContextIdle);
@@ -35,7 +35,7 @@ public class InvokeNavigationViewItemAction :
{
if (collection is { Count: > 0 } && collection[0] is ISelectable selectable)
{
selectable.Selected = true;
selectable.IsSelected = true;
}
}
}, DispatcherPriority.ContextIdle);