Files
@ 5e28ba3945f7
Branch filter:
Location: ATITD-Tools/Desert-Paint-Codex/Views/MainWindow.axaml.cs - annotation
5e28ba3945f7
1.6 KiB
text/x-csharp
Recipe count is now a ulong instead of an int so it can show values > 2.47 billion. Also, don't allow clearing the recipe list while the recipe generator is running.
40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | using System;
using System.ComponentModel;
using System.Reactive;
using System.Reactive.Disposables;
using System.Threading.Tasks;
using Avalonia;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.Util;
using DesertPaintCodex.ViewModels;
using ReactiveUI;
namespace DesertPaintCodex.Views
{
public class MainWindow : ReactiveWindow<MainWindowViewModel>
{
private bool _closeValidated;
public MainWindow()
{
InitializeComponent();
#if DEBUG
this.AttachDevTools();
#endif
this.WhenActivated(disposables=>
{
ViewModel?.Exit.Subscribe(_ => Close()).DisposeWith(disposables);
ViewModel?.ShowMessageBoxDialog.RegisterHandler(DialogUtil.ShowDialog<MessageBoxView,MessageBoxViewModel,int>).DisposeWith(disposables);
ViewModel?.ShowAboutDialog.RegisterHandler(DialogUtil.ShowDialog<AboutView,AboutViewModel,Unit>).DisposeWith(disposables);
ViewModel?.ShowScreenSettingsDialog.RegisterHandler(DialogUtil.ShowDialog<ScreenSettingsView,ScreenSettingsViewModel,Unit>).DisposeWith(disposables);
});
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
public async void OnMainWindowClosing(object? sender, CancelEventArgs e)
{
if (_closeValidated) return;
if (ViewModel == null) return;
e.Cancel = true;
if (!await ViewModel.ValidateSafeExit()) return;
_closeValidated = true;
Close();
}
}
}
|