Files @ f419334a476f
Branch filter:

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

Malkyne
Improved up behavior for clipped reactions and 3-way reactions, and fixed
related bugs.

using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;


namespace DesertPaintCodex.Views
{
    public class SelectProfileView : ReactiveUserControl<SelectProfileViewModel>

    {
    public SelectProfileView()
    {
        InitializeComponent();
    }

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