mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
60 lines
2.3 KiB
C#
60 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
using ReactiveUI;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for InstallationConfigurationView.xaml
|
|
/// </summary>
|
|
public partial class InstallationConfigurationView : ReactiveUserControl<InstallerVM>
|
|
{
|
|
public InstallationConfigurationView()
|
|
{
|
|
InitializeComponent();
|
|
this.WhenActivated(dispose =>
|
|
{
|
|
this.WhenAny(x => x.ViewModel.Installer.ConfigVisualVerticalOffset)
|
|
.Select(i => (double)i)
|
|
.BindToStrict(this, x => x.InstallConfigSpacer.Height)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.ModListLocation)
|
|
.BindToStrict(this, x => x.ModListLocationPicker.PickerVM)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.Installer)
|
|
.BindToStrict(this, x => x.InstallerCustomizationContent.Content)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.BeginCommand)
|
|
.BindToStrict(this, x => x.BeginButton.Command)
|
|
.DisposeWith(dispose);
|
|
|
|
// Error icon display
|
|
var vis = this.WhenAny(x => x.ViewModel.Installer.CanInstall)
|
|
.Select(err => err.Failed ? Visibility.Visible : Visibility.Hidden)
|
|
.Replay(1)
|
|
.RefCount();
|
|
vis.BindToStrict(this, x => x.ErrorSummaryIconGlow.Visibility)
|
|
.DisposeWith(dispose);
|
|
vis.BindToStrict(this, x => x.ErrorSummaryIcon.Visibility)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.Installer.CanInstall)
|
|
.Select(x => x.Reason)
|
|
.BindToStrict(this, x => x.ErrorSummaryIcon.ToolTip)
|
|
.DisposeWith(dispose);
|
|
});
|
|
}
|
|
}
|
|
}
|