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

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : LookupFieldDesigner.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.Drawing;
  11. namespace Itenso.WebUserForms.Controls
  12. {
  13. // ------------------------------------------------------------------------
  14. public class LookupFieldDesigner : UserFormFieldDesigner
  15. {
  16. // ----------------------------------------------------------------------
  17. public LookupFieldDesigner()
  18. {
  19. } // LookupFieldDesigner
  20. // ----------------------------------------------------------------------
  21. protected Color MissingLookupNameColor
  22. {
  23. get { return this.missingLookupNameColor; }
  24. set { this.missingLookupNameColor = value; }
  25. } // MissingLookupNameColor
  26. // ----------------------------------------------------------------------
  27. protected string LookupName
  28. {
  29. get
  30. {
  31. ILookupField lookupField = base.Component as ILookupField;
  32. if ( lookupField == null )
  33. {
  34. throw new InvalidOperationException( "ILookupField required" );
  35. }
  36. return lookupField.LookupName;
  37. }
  38. } // LookupName
  39. // ----------------------------------------------------------------------
  40. protected bool HasLookupName
  41. {
  42. get { return !string.IsNullOrEmpty( LookupName ); }
  43. } // HasLookupName
  44. // ----------------------------------------------------------------------
  45. protected override Color GetStatusColor()
  46. {
  47. if ( !HasLookupName )
  48. {
  49. return MissingLookupNameColor;
  50. }
  51. return base.GetStatusColor();
  52. } // GetStatusColor
  53. // ----------------------------------------------------------------------
  54. // members
  55. private Color missingLookupNameColor = Color.LightCyan;
  56. } // class LookupFieldDesigner
  57. } // namespace Itenso.WebUserForms.Controls
  58. // -- EOF -------------------------------------------------------------------