mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-26 07:40:10 +00:00
18 lines
341 B
C#
18 lines
341 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.Shared
|
|||
|
{
|
|||
|
public class TouchPanelOpenEventArg : EventArgs
|
|||
|
{
|
|||
|
public string PlaneId { get; set; }
|
|||
|
|
|||
|
public string PanelId { get; set; }
|
|||
|
|
|||
|
public string Caption { get; set; }
|
|||
|
|
|||
|
public int Width { get; set; }
|
|||
|
|
|||
|
public int Height { get; set; }
|
|||
|
}
|
|||
|
}
|