mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
26 lines
510 B
C#
26 lines
510 B
C#
using System;
|
|
|
|
namespace MSFSPopoutPanelManager.DomainModel.Profile
|
|
{
|
|
public class PanelConfigItem
|
|
{
|
|
public IntPtr PanelHandle { get; set; } = IntPtr.Zero;
|
|
|
|
public PanelConfigPropertyName PanelConfigProperty { get; set; }
|
|
}
|
|
|
|
public enum PanelConfigPropertyName
|
|
{
|
|
PanelName,
|
|
Left,
|
|
Top,
|
|
Width,
|
|
Height,
|
|
AlwaysOnTop,
|
|
HideTitlebar,
|
|
FullScreen,
|
|
TouchEnabled,
|
|
AutoGameRefocus,
|
|
None
|
|
}
|
|
}
|