mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
57 lines
1.6 KiB
C#
57 lines
1.6 KiB
C#
using System;
|
|
using MSFSPopoutPanelManager.Shared;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MSFSPopoutPanelManager.DomainModel.Setting
|
|
{
|
|
public class GeneralSetting : ObservableObject
|
|
{
|
|
public GeneralSetting()
|
|
{
|
|
InitializeChildPropertyChangeBinding();
|
|
|
|
PropertyChanged += (_, e) =>
|
|
{
|
|
if (e.PropertyName == "UseApplicationDataPath")
|
|
{
|
|
OnApplicationDataPathUpdated?.Invoke(this, UseApplicationDataPath);
|
|
ApplicationDataPath = FileIo.GetUserDataFilePath(UseApplicationDataPath);
|
|
}
|
|
};
|
|
|
|
ApplicationDataPath = FileIo.GetUserDataFilePath(UseApplicationDataPath);
|
|
}
|
|
|
|
public bool AlwaysOnTop { get; set; } = true;
|
|
|
|
public bool AutoClose { get; set; } = true;
|
|
|
|
public bool MinimizeToTray { get; set; } = false;
|
|
|
|
public bool StartMinimized { get; set; } = false;
|
|
|
|
public bool CheckForUpdate { get; set; } = true;
|
|
|
|
public bool TurboMode { get; set; } = false;
|
|
|
|
public bool UseApplicationDataPath { get; set; } = false;
|
|
|
|
[JsonIgnore, IgnorePropertyChanged]
|
|
public bool AutoStart
|
|
{
|
|
get => AppAutoStart.CheckIsAutoStart();
|
|
set
|
|
{
|
|
if (value)
|
|
AppAutoStart.Activate();
|
|
else
|
|
AppAutoStart.Deactivate();
|
|
}
|
|
}
|
|
|
|
[JsonIgnore]
|
|
public string ApplicationDataPath { get; set; }
|
|
|
|
public event EventHandler<bool> OnApplicationDataPathUpdated;
|
|
}
|
|
}
|