Sweaty-Launcher/ViewModel/SettingVM.cs
2023-02-10 21:19:10 -05:00

67 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using Launcher.Common;
using Launcher.Model;
using Microsoft.Win32;
using System.IO;
using System.Windows;
using System.Windows.Input;
namespace Launcher.ViewModel
{
internal class SettingVM : ObservableObject
{
public static SettingVM Instacne = new SettingVM();
public SettingVM()
{
if (LauncherConfig == null)
{
LauncherConfig = new LauncherConfig();
}
}
public LauncherConfig LauncherConfig
{
get { return App.launcherConfig; }
set { SetProperty(ref App.launcherConfig, value); }
}
public ICommand SearchGameFileCommand => new RelayCommand(SearchGameFile);
public ICommand SetGameExePathCommand => new RelayCommand(SetGameExePath);
public void SearchGameFile()
{
LauncherConfig.GameInfo = new GameInfo(GameHelper.GameRegReader.GetGameExePath());
if (File.Exists(LauncherConfig.GameInfo.GameExePath))
{
MessageBox.Show(string.Format(Properties.Resources.tip_serach_succ,LauncherConfig.GameInfo.GameExeFolder));
}
else
{
MessageBox.Show(Properties.Resources.tip_search_err);
}
}
private void SetGameExePath()
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Filter = "原神游戏程序YuanShen.exe)|YuanShen.exe|原神游戏程序(GenshinImpact.exe)|GenshinImpact.exe";
openFileDialog.Multiselect = false;
if (openFileDialog.ShowDialog() == true)
{
LauncherConfig.GameInfo = new GameInfo(openFileDialog.FileName);
}
}
}
}