mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
28 lines
765 B
C#
28 lines
765 B
C#
using System;
|
|
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 =>
|
|
{
|
|
this.EditResourceSettings.Command = ReactiveCommand.Create(() =>
|
|
{
|
|
UIUtils.OpenFile(
|
|
KnownFolders.WabbajackAppLocal.Combine("saved_settings", "resource_settings.json"));
|
|
Environment.Exit(0);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|