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

42 lines
1.2 KiB
C#
Raw Normal View History

2023-07-12 22:41:31 +00:00
using MSFSPopoutPanelManager.Shared;
namespace MSFSPopoutPanelManager.DomainModel.Setting
{
public class PopOutSetting : ObservableObject
{
public PopOutSetting()
{
MinimizeDuringPopOut = true;
MinimizeAfterPopOut = false;
UseLeftRightControlToPopOut = false;
AutoActivePause = false;
EnablePopOutMessages = true;
2023-07-12 22:41:31 +00:00
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 EnablePopOutMessages { get; set; }
2023-07-12 22:41:31 +00:00
public bool AutoActivePause { get; set; }
public PopOutTitleBarCustomization PopOutTitleBarCustomization { get; set; }
};
}