Page navigation, CogwheelConsole

This commit is contained in:
2025-11-29 00:35:35 -06:00
parent e1502b21ad
commit c8a7ec0f09
15 changed files with 328 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace SessionZero.Pages;
public partial class HomePage : UserControl, IPageBase
{
public string PageName { get; set; } = "Home";
public HomePage()
{
InitializeComponent();
}
}