- tweak: UI improvement
This commit is contained in:
19
Nebula.Launcher/Views/ExceptionView.axaml.cs
Normal file
19
Nebula.Launcher/Views/ExceptionView.axaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace Nebula.Launcher.Views;
|
||||
|
||||
public partial class ExceptionView : UserControl
|
||||
{
|
||||
public ExceptionView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public ExceptionView(Exception exception): this()
|
||||
{
|
||||
DataContext = exception;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user