Navigation in Avalonia

This commit is contained in:
Daniel Clark
2022-12-05 19:39:13 +00:00
parent 855a4b98d2
commit 358926a5d4
17 changed files with 1660 additions and 59 deletions
@@ -1,7 +0,0 @@
namespace Toolkit.Foundation
{
public interface INavigationRoute
{
void Add(string name, object route);
}
}
@@ -1,6 +1,9 @@
namespace Toolkit.Foundation
{
public interface INavigationRouter : IInitializer
public interface INavigationRouter
{
void Navigate(Navigate args);
void Register(string name, object route);
}
}
+1 -3
View File
@@ -1,6 +1,4 @@
using System;
namespace Toolkit.Foundation
namespace Toolkit.Foundation
{
public record Navigate
{