mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Wire in some missing mappings
This commit is contained in:
parent
c345451d6c
commit
16c4dd4a76
@ -17,6 +17,13 @@ namespace Wabbajack.App.Screens
|
||||
this.OneWayBind(ViewModel, vm => vm.Image, view => view.ModListImage.Source)
|
||||
.DisposeWith(disposables);
|
||||
|
||||
this.OneWayBind(ViewModel, vm => vm.Title, view => view.ModList.Text)
|
||||
.DisposeWith(disposables);
|
||||
|
||||
this.OneWayBind(ViewModel, vm => vm.InstallFolder, view => view.InstallPath.Text,
|
||||
v => v.ToString())
|
||||
.DisposeWith(disposables);
|
||||
|
||||
this.BindCommand(ViewModel, vm => vm.PlayButton, view => view.PlayGame.Button)
|
||||
.DisposeWith(disposables);
|
||||
});
|
||||
|
@ -24,6 +24,7 @@ namespace Wabbajack.App.Screens
|
||||
{
|
||||
public class LauncherViewModel : ViewModelBase, IActivatableViewModel, IReceiver<ConfigureLauncher>
|
||||
{
|
||||
|
||||
[Reactive]
|
||||
public AbsolutePath InstallFolder { get; set; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user