1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-16 16:34:28 +01:00
msfs-popout-panel-manager/DomainModel/Profile/PanelConfigItem.cs

32 lines
588 B
C#
Raw Normal View History

2022-09-11 15:50:04 +02:00
using System;
2023-07-13 00:41:31 +02:00
namespace MSFSPopoutPanelManager.DomainModel.Profile
2022-01-27 14:40:04 +01:00
{
2022-07-23 21:23:32 +02:00
public class PanelConfigItem
{
2022-09-11 15:50:04 +02:00
public PanelConfigItem()
{
PanelHandle = IntPtr.Zero;
}
public IntPtr PanelHandle { get; set; }
2022-07-23 21:23:32 +02:00
public PanelConfigPropertyName PanelConfigProperty { get; set; }
}
2022-01-27 14:40:04 +01:00
public enum PanelConfigPropertyName
{
PanelName,
Left,
Top,
Width,
Height,
AlwaysOnTop,
HideTitlebar,
2022-04-18 21:52:39 +02:00
FullScreen,
2022-06-13 05:49:56 +02:00
TouchEnabled,
2023-07-13 00:41:31 +02:00
AutoGameRefocus,
None
2022-01-27 14:40:04 +01:00
}
}