mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
37 lines
826 B
C#
37 lines
826 B
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using Avalonia.Controls;
|
|
using DHT.Desktop.Main.Pages;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace DHT.Desktop.Main;
|
|
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed partial class MainWindow : Window {
|
|
[UsedImplicitly]
|
|
public MainWindow() {
|
|
InitializeComponent();
|
|
DataContext = new MainWindowModel(this, Arguments.Empty);
|
|
}
|
|
|
|
internal MainWindow(Arguments args) {
|
|
InitializeComponent();
|
|
DataContext = new MainWindowModel(this, args);
|
|
}
|
|
|
|
public void OnClosed(object? sender, EventArgs e) {
|
|
if (DataContext is IDisposable disposable) {
|
|
disposable.Dispose();
|
|
}
|
|
|
|
foreach (var temporaryFile in ViewerPageModel.TemporaryFiles) {
|
|
try {
|
|
File.Delete(temporaryFile);
|
|
} catch (Exception) {
|
|
// ignored
|
|
}
|
|
}
|
|
}
|
|
}
|