Files
        @ 6919080271d5
    
        
              Branch filter: 
        
    Location: ATITD-Tools/Desert-Paint-Codex/Views/CreateProfileView.axaml.cs - annotation
        
            
            6919080271d5
            655 B
            text/x-csharp
        
        
    
    Implemented a system that will allow ingredients to be safely renamed, in the
future, without invalidating profiles. Standardized to PP's "FalconBait."
    future, without invalidating profiles. Standardized to PP's "FalconBait."
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 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);
        }
    }
}
 |