Files @ 7117d2e703c8
Branch filter:

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

Malkyne
Updated scanner for Tale 10, and fixed several 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);
    }
    }
}