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

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : LookupComboBoxLookupComboBox.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. using System.ComponentModel;
  12. using System.Web.UI;
  13. using System.Web.UI.WebControls;
  14. namespace Itenso.WebUserForms.Controls
  15. {
  16. #if (LOOKUP_FIELDS && TP_COMBO_FIELDS)
  17. // ------------------------------------------------------------------------
  18. [DefaultProperty( "FieldName" )]
  19. [Designer( typeof( LookupFieldDesigner ) )]
  20. [ToolboxBitmap( typeof( ResFinder ), "Itenso.WebUserForms.Controls.Images.LookupComboBox.png" )]
  21. public class LookupComboBox : ComboBox, ILookupField, IPlaceholderControl
  22. {
  23. // ----------------------------------------------------------------------
  24. public LookupComboBox()
  25. {
  26. } // LookupComboBox
  27. // ----------------------------------------------------------------------
  28. [DefaultValue( "" )]
  29. [Description( "LookupComboBox Form Field Lookup Name" )]
  30. [Category( "Web User Forms" )]
  31. public string LookupName
  32. {
  33. get { return this.lookupName; }
  34. set { this.lookupName = value; }
  35. } // LookupName
  36. // ----------------------------------------------------------------------
  37. [Browsable( false )]
  38. Control IPlaceholderControl.Control
  39. {
  40. get { return this; }
  41. } // IPlaceholderControl.Control
  42. // ----------------------------------------------------------------------
  43. // members
  44. private string lookupName;
  45. } // class LookupComboBox
  46. #endif // LOOKUP_FIELDS && TP_COMBO_FIELDS
  47. } // namespace Itenso.WebUserForms.Controls
  48. // -- EOF -------------------------------------------------------------------