20 lines
505 B
C#
20 lines
505 B
C#
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;
|
|
}
|
|
} |