Files @ 62d349a8db2f
Branch filter:

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

Jason Maltzen
Fix the PaintMix export format - use the PracticalPaint internal names for ingredients, and remove excess whitespace. Also, don't export a recipe for colors that don't have a recipe.
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;

namespace DesertPaintCodex.Views
{
    public class CreateProfileView : ReactiveUserControl<CreateProfileViewModel>
    {
        public CreateProfileView()
        {
            InitializeComponent();
            var nameInput = this.FindControl<TextBox>("NameInput");
            if (nameInput != null)
            {
                nameInput.AttachedToVisualTree += (s,e) => nameInput.Focus();
            }
        }

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