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

38 lines
1.2 KiB
C#
Raw Normal View History

using System;
2023-08-20 09:18:24 +00:00
using System.Reactive.Disposables;
using ReactiveUI;
using Wabbajack.Paths.IO;
namespace Wabbajack
{
/// <summary>
/// Interaction logic for PerformanceSettingsView.xaml
/// </summary>
public partial class PerformanceSettingsView : ReactiveUserControl<PerformanceSettings>
{
public PerformanceSettingsView()
{
InitializeComponent();
this.WhenActivated(disposable =>
{
2023-08-20 09:18:24 +00:00
this.BindStrict(
ViewModel,
x => x.MaximumMemoryPerDownloadThreadMb,
x => x.MaximumMemoryPerDownloadThreadIntegerUpDown.Value)
.DisposeWith(disposable);
this.EditResourceSettings.Command = ReactiveCommand.Create(() =>
{
UIUtils.OpenFile(
KnownFolders.WabbajackAppLocal.Combine("saved_settings", "resource_settings.json"));
Environment.Exit(0);
});
2023-08-20 09:18:24 +00:00
ResetMaximumMemoryPerDownloadThread.Command = ReactiveCommand.Create(() =>
{
ViewModel.ResetMaximumMemoryPerDownloadThreadMb();
});
});
}
}
}