- add: menu

This commit is contained in:
2024-12-21 15:15:04 +03:00
parent 42fde38db6
commit d9161f837b
15 changed files with 174 additions and 62 deletions

View File

@@ -0,0 +1,20 @@
using Avalonia.Controls;
using Nebula.Launcher.ViewModels;
namespace Nebula.Launcher.Views.Pages;
public partial class ServerListView : UserControl
{
// This constructor is used when the view is created by the XAML Previewer
public ServerListView()
{
InitializeComponent();
}
// This constructor is used when the view is created via dependency injection
public ServerListView(ServerListViewModel viewModel)
: this()
{
DataContext = viewModel;
}
}