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

34 lines
615 B
C#
Raw Normal View History

2022-09-11 13:50:04 +00:00
using System;
namespace MSFSPopoutPanelManager.Shared
2022-01-27 13:40:04 +00:00
{
2022-07-23 19:23:32 +00:00
public class PanelConfigItem
{
2022-09-11 13:50:04 +00:00
public PanelConfigItem()
{
PanelHandle = IntPtr.Zero;
}
public IntPtr PanelHandle { get; set; }
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,
2022-07-30 02:29:20 +00:00
DisableGameRefocus,
2022-08-08 06:07:24 +00:00
RowHeader,
None,
2022-08-02 20:55:20 +00:00
Invalid,
2022-01-27 13:40:04 +00:00
}
}