namespace Nexus.Web { /// /// Extend MessageLabel to ignore runtime events, /// require an entry, and use an alternate suffix. /// public class TextLabel : ViewLabel { /// /// Default suffix for NameLabel IDs ["_label"]. /// public const string TEXT_SUFFIX = "_label"; /// /// Set the defaults for this subclass. /// public TextLabel() { Suffix = TEXT_SUFFIX; Required = true; View_Hint = false; View_Alert = false; } } }