Files @ 6a6817b17a06
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/ExperimentLogView.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 Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;


namespace DesertPaintCodex.Views
{
    public class ExperimentLogView : ReactiveUserControl<ExperimentLogViewModel>
    {
        private readonly ListBox? _remainingList;
        
        public ExperimentLogView()
        {
            InitializeComponent();

            _remainingList = this.FindControl<ListBox>("RemainingList");
        }

        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }
        
        private void RemainingSelectionChanged(object? sender, SelectionChangedEventArgs e)
        {
            if (_remainingList == null) return;
            
            foreach (var item in e.AddedItems)
            {
                _remainingList.ScrollIntoView(item);
                return;
            }
        }
    }
}