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

编辑器/阅读器

开发平台:

C#

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