27 lines
558 B
C#
27 lines
558 B
C#
namespace GeekDesk.Constant
|
|
{
|
|
internal class RunTimeStatus
|
|
{
|
|
|
|
/// <summary>
|
|
/// 查询框是否在工作
|
|
/// </summary>
|
|
public static bool SEARCH_BOX_SHOW = false;
|
|
|
|
/// <summary>
|
|
/// 贴边隐藏后 以非鼠标经过方式触发显示
|
|
/// </summary>
|
|
public static bool MARGIN_HIDE_AND_OTHER_SHOW = false;
|
|
|
|
|
|
/// <summary>
|
|
/// 是否锁定主面板 锁定后 不执行隐藏动作
|
|
/// </summary>
|
|
public static bool LOCK_APP_PANEL = false;
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|