namespace Nexus.Web { /// /// Extend MessageLabel to respond only to the View_Hint event /// and use an alternate suffix. /// public class HintLabel : ViewLabel { /// /// Default suffix for NameLabel IDs ["_hint"]. /// public const string HINT_SUFFIX = "_hint"; /// /// Set the defaults for this subclass. /// public HintLabel() { Suffix = HINT_SUFFIX; View_Alert = false; } } }