mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using System.Reactive.Disposables;
|
|
using ReactiveUI;
|
|
using Wabbajack.App.Views;
|
|
|
|
namespace Wabbajack.App.Screens;
|
|
|
|
public partial class SettingsView : ScreenBase<SettingsViewModel>
|
|
{
|
|
public SettingsView() : base("Settings")
|
|
{
|
|
InitializeComponent();
|
|
this.WhenActivated(disposables =>
|
|
{
|
|
this.BindCommand(ViewModel, vm => vm.NexusLogin, view => view.NexusLogIn)
|
|
.DisposeWith(disposables);
|
|
this.BindCommand(ViewModel, vm => vm.NexusLogout, view => view.NexusLogOut)
|
|
.DisposeWith(disposables);
|
|
|
|
this.BindCommand(ViewModel, vm => vm.LoversLabLogin, view => view.LoversLabLogIn)
|
|
.DisposeWith(disposables);
|
|
this.BindCommand(ViewModel, vm => vm.LoversLabLogout, view => view.LoversLabLogOut)
|
|
.DisposeWith(disposables);
|
|
|
|
|
|
this.BindCommand(ViewModel, vm => vm.VectorPlexusLogin, view => view.VectorPlexusLogIn)
|
|
.DisposeWith(disposables);
|
|
this.BindCommand(ViewModel, vm => vm.VectorPlexusLogout, view => view.VectorPlexusLogOut)
|
|
.DisposeWith(disposables);
|
|
|
|
|
|
this.OneWayBind(ViewModel, vm => vm.Resources, view => view.ResourcesList.Items)
|
|
.DisposeWith(disposables);
|
|
|
|
});
|
|
}
|
|
} |