Enum MessageBoxKind
The semantic severity of a message-box style inline dialog. It describes the message's meaning —
not its buttons (see MessageBoxButtons) — and selects the dialog surface/style the
hosting
InlineDialog renders (see InlineMessageBoxControl / TigerTui.MessageBoxAsync).
The surface is resolved through the active theme (ThemeStyle.DialogSurface /
WarningSurface / ErrorSurface), so kinds stay theme-driven rather than hard-coded.public enum MessageBoxKind
Fields
Error = 2- An error on the red error surface (
ThemeStyle.ErrorSurface). Normal = 0- An informational message on the normal dialog surface (
ThemeStyle.DialogSurface). Warning = 1- A warning on the yellow/orange warning surface (
ThemeStyle.WarningSurface).