mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
41 lines
942 B
C#
41 lines
942 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Threading.Tasks;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace DHT.Desktop.Dialogs.Progress {
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed class ProgressDialog : Window {
|
|
private bool isFinished = false;
|
|
|
|
public ProgressDialog() {
|
|
InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
private void InitializeComponent() {
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
|
|
public void OnClosing(object? sender, CancelEventArgs e) {
|
|
e.Cancel = !isFinished;
|
|
}
|
|
|
|
public void Loaded(object? sender, EventArgs e) {
|
|
if (DataContext is ProgressDialogModel model) {
|
|
Task.Run(model.StartTask).ContinueWith(OnFinished, TaskScheduler.FromCurrentSynchronizationContext());
|
|
}
|
|
}
|
|
|
|
private void OnFinished(Task task) {
|
|
isFinished = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|