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