2021-12-22 23:15:14 -05:00
|
|
|
using Avalonia.Markup.Xaml;
|
2021-12-28 19:44:25 -05:00
|
|
|
using Avalonia.ReactiveUI;
|
|
|
|
using PatchGenerator.ViewModels;
|
|
|
|
using ReactiveUI;
|
2021-12-22 23:15:14 -05:00
|
|
|
|
|
|
|
namespace PatchGenerator.Views
|
|
|
|
{
|
2021-12-28 19:44:25 -05:00
|
|
|
public partial class OptionsView : ReactiveUserControl<OptionsViewModel>
|
2021-12-22 23:15:14 -05:00
|
|
|
{
|
|
|
|
public OptionsView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
{
|
2021-12-28 19:44:25 -05:00
|
|
|
this.WhenActivated(disposables => { });
|
2021-12-22 23:15:14 -05:00
|
|
|
AvaloniaXamlLoader.Load(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|