Improve navigation

This commit is contained in:
TheXamlGuy
2024-05-16 22:30:01 +01:00
parent 7f3c4c53cc
commit 85a14a8259
9 changed files with 53 additions and 38 deletions
+6 -3
View File
@@ -2,8 +2,11 @@
public interface INavigationScope
{
void Navigate(string route, object? sender = null, object? context = null,
EventHandler? navigated = null, object[]? parameters = null);
void Navigate(string route,
object? sender = null,
object? region = null,
EventHandler? navigated = null,
object[]? parameters = null);
void Back(object? context);
void Back(object? region);
}