ValidatorEnabler.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : ValidatorEnabler.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.Web.UI;
  11. using System.Web.UI.WebControls;
  12. namespace Itenso.WebUserForms.Controls
  13. {
  14. // ------------------------------------------------------------------------
  15. public class ValidatorEnabler : UserFormVisitor
  16. {
  17. // ----------------------------------------------------------------------
  18. public ValidatorEnabler( Control startControl, bool enabled )
  19. : base( startControl )
  20. {
  21. this.enabled = enabled;
  22. } // ValidatorEnabler
  23. // ----------------------------------------------------------------------
  24. public bool Enabled
  25. {
  26. get { return this.enabled; }
  27. } // Enabled
  28. // ----------------------------------------------------------------------
  29. public void Enable()
  30. {
  31. Start();
  32. } // Enable
  33. // ----------------------------------------------------------------------
  34. public static void Enable( Control startControl, bool enabled )
  35. {
  36. ValidatorEnabler validatorEnabler = new ValidatorEnabler( startControl, enabled );
  37. validatorEnabler.Enable();
  38. } // Enable
  39. // ----------------------------------------------------------------------
  40. protected override void VisitControl( Control control )
  41. {
  42. BaseValidator baseValidator = control as BaseValidator;
  43. if ( baseValidator != null )
  44. {
  45. baseValidator.Enabled = enabled;
  46. }
  47. } // VisitControl
  48. // ----------------------------------------------------------------------
  49. // members
  50. private readonly bool enabled;
  51. } // class ValidatorEnabler
  52. } // namespace Itenso.WebUserForms.Controls
  53. // -- EOF -------------------------------------------------------------------