2021-12-11 21:47:59 -05:00
|
|
|
using Avalonia.Markup.Xaml;
|
2021-12-28 19:44:25 -05:00
|
|
|
using Avalonia.ReactiveUI;
|
|
|
|
using PatchClient.ViewModels;
|
|
|
|
using ReactiveUI;
|
2021-12-11 21:47:59 -05:00
|
|
|
|
|
|
|
namespace PatchClient.Views
|
|
|
|
{
|
2021-12-28 19:44:25 -05:00
|
|
|
public partial class PatcherView : ReactiveUserControl<PatcherViewModel>
|
2021-12-11 21:47:59 -05:00
|
|
|
{
|
|
|
|
public PatcherView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
{
|
2021-12-28 19:44:25 -05:00
|
|
|
this.WhenActivated(disposables => { });
|
2021-12-11 21:47:59 -05:00
|
|
|
AvaloniaXamlLoader.Load(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|