Files
NebulaLauncher/Nebula.Launcher/Views/Popup/ExceptionView.axaml.cs
2025-01-14 22:10:16 +03:00

17 lines
338 B
C#

using Avalonia.Controls;
using Nebula.Launcher.ViewModels.Popup;
namespace Nebula.Launcher.Views.Popup;
public partial class ExceptionView : UserControl
{
public ExceptionView()
{
InitializeComponent();
}
public ExceptionView(ExceptionViewModel viewModel) : this()
{
DataContext = viewModel;
}
}