mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
36 lines
777 B
C#
36 lines
777 B
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace DHT.Desktop.Main {
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed class MainWindow : Window {
|
|
[UsedImplicitly]
|
|
public MainWindow() {
|
|
InitializeComponent(Arguments.Empty);
|
|
}
|
|
|
|
internal MainWindow(Arguments args) {
|
|
InitializeComponent(args);
|
|
}
|
|
|
|
private void InitializeComponent(Arguments args) {
|
|
AvaloniaXamlLoader.Load(this);
|
|
DataContext = new MainWindowModel(this, args);
|
|
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
public void OnClosed(object? sender, EventArgs e) {
|
|
if (DataContext is IDisposable disposable) {
|
|
disposable.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|