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

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : DropDownList.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. // ------------------------------------------------------------------------
  16. [DefaultProperty( "FieldName" )]
  17. [Designer( typeof( UserFormFieldDesigner ) )]
  18. [ToolboxBitmap( typeof( ResFinder ), "Itenso.WebUserForms.Controls.Images.DropDownList.png" )]
  19. public class DropDownList : System.Web.UI.WebControls.DropDownList, IListField
  20. {
  21. // ----------------------------------------------------------------------
  22. [DefaultValue( "" )]
  23. [Description( "DropDownList Form Field Name" )]
  24. [Category( "Web User Forms" )]
  25. public string FieldName
  26. {
  27. get { return this.fieldName; }
  28. set { this.fieldName = value; }
  29. } // FieldName
  30. // ----------------------------------------------------------------------
  31. [DefaultValue( "" )]
  32. [Description( "DropDownList Form Field Value" )]
  33. [Category( "Web User Forms" )]
  34. public string FieldValue
  35. {
  36. get { return SelectedValue; }
  37. set
  38. {
  39. ListItem listItem = Items.FindByValue( value );
  40. if ( listItem != null )
  41. {
  42. SelectedIndex = Items.IndexOf( listItem );
  43. }
  44. }
  45. } // FieldValue
  46. // ----------------------------------------------------------------------
  47. [Browsable( false )]
  48. bool IUserFormField.AllowEdit 
  49. {
  50. get { return Enabled; }
  51. set { Enabled = value; }
  52. } // AllowEdit
  53. // ----------------------------------------------------------------------
  54. public override string ToString()
  55. {
  56. return FormFieldTool.GetFieldDescription( this );
  57. } // ToString
  58. // ----------------------------------------------------------------------
  59. // members
  60. private string fieldName;
  61. } // class DropDownList
  62. } // namespace Itenso.WebUserForms.Controls
  63. // -- EOF -------------------------------------------------------------------