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/PopOutSetting.cs
2023-07-12 18:47:24 -04:00

38 lines
1.1 KiB
C#

using MSFSPopoutPanelManager.Shared;
namespace MSFSPopoutPanelManager.DomainModel.Setting
{
public class PopOutSetting : ObservableObject
{
public PopOutSetting()
{
MinimizeDuringPopOut = true;
MinimizeAfterPopOut = false;
UseLeftRightControlToPopOut = false;
AutoActivePause = false;
AfterPopOutCameraView = new AfterPopOutCameraView();
AutoPanning = new AutoPanning();
PopOutTitleBarCustomization = new PopOutTitleBarCustomization();
EnablePanelResetWhenLocked = true;
InitializeChildPropertyChangeBinding();
}
public AutoPanning AutoPanning { get; set; }
public AfterPopOutCameraView AfterPopOutCameraView { get; set; }
public bool MinimizeDuringPopOut { get; set; }
public bool MinimizeAfterPopOut { get; set; }
public bool UseLeftRightControlToPopOut { get; set; }
public bool EnablePanelResetWhenLocked { get; set; }
public bool AutoActivePause { get; set; }
public PopOutTitleBarCustomization PopOutTitleBarCustomization { get; set; }
};
}