Parameter improvements

This commit is contained in:
TheXamlGuy
2024-05-26 23:29:50 +01:00
parent baf504b815
commit cfc79e26f0
11 changed files with 136 additions and 115 deletions
+2 -2
View File
@@ -5,10 +5,10 @@ public record NavigateEventArgs(string Route,
string? Scope = null,
object? Sender = null,
EventHandler? Navigated = null,
object[]? Parameters = null);
IDictionary<string, object>? Parameters = null);
public record NavigateEventArgs<TNavigation>(object Region,
object Template,
object Content,
object? Sender = null,
object[]? Parameters = null);
IDictionary<string, object>? Parameters = null);