2021-12-11 21:47:59 -05:00
|
|
|
using Avalonia;
|
|
|
|
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 MainWindow : ReactiveWindow<MainWindowViewModel>
|
2021-12-11 21:47:59 -05:00
|
|
|
{
|
|
|
|
public MainWindow()
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|