mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
20 lines
381 B
C#
20 lines
381 B
C#
using System;
|
|
|
|
namespace MSFSPopoutPanelManager
|
|
{
|
|
public class ChildWindow
|
|
{
|
|
public ChildWindow()
|
|
{
|
|
WindowType = WindowType.Undetermined;
|
|
}
|
|
|
|
public IntPtr Handle { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string ClassName { get; set; }
|
|
|
|
public WindowType WindowType { get; set; }
|
|
}
|
|
}
|