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/Profile/PanelConfigItem.cs

29 lines
560 B
C#
Raw Normal View History

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