IWindowHost.IsLayoutEditing property
True while the user is in layout edit-mode (Shift+), when overlays are force-shown for arranging even out of their normal context. A HUD's content Funcs can read this to render example / placeholder values (so the layout is legible while positioning) instead of the empty/zero they'd return out of context — e.g. () => _services.Windows.IsLayoutEditing ? “1234” : Live()`. Polled each refresh (~10 Hz); flips within ~100 ms of entering/leaving edit-mode.
public bool IsLayoutEditing { get; }See Also
Section titled “See Also”- interface IWindowHost
- namespace Stellar.Abstractions.Services