wabbajack/Wabbajack/Views/Settings/PerformanceSettingsView.xaml.cs

48 lines
1.6 KiB
C#
Raw Normal View History

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;
2020-02-08 04:35:08 +00:00
using Wabbajack.Common;
namespace Wabbajack
{
/// <summary>
/// Interaction logic for PerformanceSettingsView.xaml
/// </summary>
public partial class PerformanceSettingsView : ReactiveUserControl<PerformanceSettings>
{
public PerformanceSettingsView()
{
InitializeComponent();
this.WhenActivated(disposable =>
{
// Bind Values
2020-09-12 20:23:03 +00:00
this.BindStrict(this.ViewModel, x => x.DiskThreads, x => x.DiskThreads.Value,
vmToViewConverter: x => x,
2020-09-12 20:23:03 +00:00
viewToVmConverter: x => (int)(x ?? 0))
.DisposeWith(disposable);
2020-09-12 20:23:03 +00:00
this.BindStrict(this.ViewModel, x => x.DownloadThreads, x => x.DownloadThreads.Value,
vmToViewConverter: x => x,
viewToVmConverter: x => (int)(x ?? 0))
.DisposeWith(disposable);
2020-09-12 20:23:03 +00:00
this.BindStrict(this.ViewModel, x => x.FavorPerfOverRam, x => x.FavorPerfOverRam.IsChecked)
.DisposeWith(disposable);
});
}
}
}