1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/DomainModel/Setting/GeneralSetting.cs
2023-07-12 18:47:24 -04:00

45 lines
1.1 KiB
C#

using MSFSPopoutPanelManager.Shared;
using Newtonsoft.Json;
namespace MSFSPopoutPanelManager.DomainModel.Setting
{
public class GeneralSetting : ObservableObject
{
public GeneralSetting()
{
AlwaysOnTop = true;
MinimizeToTray = false;
StartMinimized = false;
AutoClose = true;
CheckForUpdate = true;
InitializeChildPropertyChangeBinding();
}
public bool AlwaysOnTop { get; set; }
public bool AutoClose { get; set; }
public bool MinimizeToTray { get; set; }
public bool StartMinimized { get; set; }
public bool CheckForUpdate { get; set; }
[JsonIgnore, IgnorePropertyChanged]
public bool AutoStart
{
get
{
return AppAutoStart.CheckIsAutoStart();
}
set
{
if (value)
AppAutoStart.Activate();
else
AppAutoStart.Deactivate();
}
}
}
}