Files
GeekDesk/Constant/AppHideType.cs
2021-05-19 17:31:28 +08:00

15 lines
251 B
C#

/// <summary>
/// 面板隐藏方式
/// </summary>
namespace GeekDesk.Constant
{
public enum AppHideType
{
LOST_FOCUS = 1, // 失去焦点后
START_EXE = 2, //启动程序后
HANDLE = 3 //手动关闭
}
}