Files @ 6a6817b17a06
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/ReactionTestView.axaml.cs

Jason Maltzen
Simulator view updates: new warning when the recipe is below minimum concentration. Add the missing reactions to the warning about missing reactions. Show the current saved recipe for a color, and allow replacing/saving the current simulated recipe as the recipe for that color.
using System.Reactive;
using System.Reactive.Disposables;
using Avalonia.Markup.Xaml;
using DesertPaintCodex.ViewModels;
using ReactiveUI;

namespace DesertPaintCodex.Views
{
    public class ReactionTestView : UserControlBase<ReactionTestViewModel>
    {
        public ReactionTestView()
        {
            InitializeComponent();
            
            this.WhenActivated(disposables=>
            {
                ViewModel?.ShowScreenSettingsDialog.RegisterHandler(ShowDialog<ScreenSettingsView,ScreenSettingsViewModel,Unit>).DisposeWith(disposables);
            });

        }
        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }
        

    }

}