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