启动加载页
This commit is contained in:
@@ -9,4 +9,22 @@ namespace UIShare.PubEvent
|
||||
public class OverlayEvent : PubSubEvent<bool>
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 作用域感知的灰度遮罩事件:仅台架名称与 Scope 匹配的台架视图显示/隐藏加载遮罩,
|
||||
/// 避免全局 OverlayEvent 导致所有台架及主窗口同时变灰。
|
||||
/// </summary>
|
||||
public class ScopeOverlayEvent : PubSubEvent<ScopeOverlayArgs>
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>作用域遮罩事件参数。</summary>
|
||||
public class ScopeOverlayArgs
|
||||
{
|
||||
/// <summary>台架名称(与 SystemConfig.Title / TestStatus 一致)。</summary>
|
||||
public string Scope { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>true 显示遮罩,false 隐藏遮罩。</summary>
|
||||
public bool Show { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user