You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
742 B
29 lines
742 B
using System.Diagnostics.CodeAnalysis; |
|
using Avalonia.Interactivity; |
|
using Avalonia.Markup.Xaml; |
|
using FluentAvalonia.UI.Windowing; |
|
using StabilityMatrix.Avalonia.Controls; |
|
|
|
namespace StabilityMatrix.Avalonia.Views.Dialogs; |
|
|
|
public partial class ExceptionDialog : AppWindowBase |
|
{ |
|
public ExceptionDialog() |
|
{ |
|
InitializeComponent(); |
|
|
|
TitleBar.ExtendsContentIntoTitleBar = true; |
|
TitleBar.TitleBarHitTestType = TitleBarHitTestType.Complex; |
|
} |
|
|
|
private void InitializeComponent() |
|
{ |
|
AvaloniaXamlLoader.Load(this); |
|
} |
|
|
|
[SuppressMessage("ReSharper", "UnusedParameter.Local")] |
|
private void ExitButton_OnClick(object? sender, RoutedEventArgs e) |
|
{ |
|
Close(); |
|
} |
|
}
|
|
|