using System; using System.Collections.Generic; using System.Linq; using System.Reactive.Disposables; using System.Reactive.Linq; using System.Text; using System.Threading.Tasks; 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 { /// /// Interaction logic for InstallationCompleteView.xaml /// public partial class InstallationCompleteView : ReactiveUserControl { public InstallationCompleteView() { InitializeComponent(); this.WhenActivated(dispose => { this.WhenAny(x => x.ViewModel.Completed) .Select(x => x?.Failed ?? false) .BindToStrict(this, x => x.AttentionBorder.Failure) .DisposeWith(dispose); this.WhenAny(x => x.ViewModel.Completed) .Select(x => x?.Failed ?? false) .Select(failed => { return $"Installation {(failed ? "Failed" : "Complete")}"; }) .BindToStrict(this, x => x.TitleText.Text) .DisposeWith(dispose); this.WhenAny(x => x.ViewModel.BackCommand) .BindToStrict(this, x => x.BackButton.Command) .DisposeWith(dispose); this.WhenAny(x => x.ViewModel.GoToInstallCommand) .BindToStrict(this, x => x.GoToInstallButton.Command) .DisposeWith(dispose); this.WhenAny(x => x.ViewModel.OpenReadmeCommand) .BindToStrict(this, x => x.OpenReadmeButton.Command) .DisposeWith(dispose); this.WhenAny(x => x.ViewModel.CloseWhenCompleteCommand) .BindToStrict(this, x => x.CloseButton.Command) .DisposeWith(dispose); }); } } }