mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reactive.Disposables;
|
|
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;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ConfirmationInterventionView.xaml
|
|
/// </summary>
|
|
public partial class ConfirmationInterventionView : ReactiveUserControl<ConfirmationIntervention>
|
|
{
|
|
public ConfirmationInterventionView()
|
|
{
|
|
InitializeComponent();
|
|
this.WhenActivated(dispose =>
|
|
{
|
|
this.WhenAny(x => x.ViewModel.ShortDescription)
|
|
.BindToStrict(this, x => x.ShortDescription.Text)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.ExtendedDescription)
|
|
.BindToStrict(this, x => x.ExtendedDescription.Text)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.ConfirmCommand)
|
|
.BindToStrict(this, x => x.ConfirmButton.Command)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.CancelCommand)
|
|
.BindToStrict(this, x => x.CancelButton.Command)
|
|
.DisposeWith(dispose);
|
|
});
|
|
}
|
|
}
|
|
}
|