- tweak: Rework loading status
This commit is contained in:
17
Nebula.Launcher/Views/ServerCompoundEntryView.axaml.cs
Normal file
17
Nebula.Launcher/Views/ServerCompoundEntryView.axaml.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Avalonia.Controls;
|
||||
using Nebula.Launcher.ViewModels;
|
||||
|
||||
namespace Nebula.Launcher.Views;
|
||||
|
||||
public partial class ServerCompoundEntryView : UserControl
|
||||
{
|
||||
public ServerCompoundEntryView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public ServerCompoundEntryView(ServerCompoundEntryViewModel viewModel) : this()
|
||||
{
|
||||
DataContext = viewModel;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user