CheckBox.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
- // -- FILE ------------------------------------------------------------------
- // name : CheckBox.cs
- // project : Itenso Web User Forms
- // created : Jani Giannoudis - 2008.10.30
- // language : c#
- // environment: .NET 2.0
- // copyright : (c) 2008 by Itenso GmbH, Switzerland
- // --------------------------------------------------------------------------
- using System;
- using System.Drawing;
- using System.ComponentModel;
- using System.Web.UI.WebControls;
- namespace Itenso.WebUserForms.Controls
- {
- // ------------------------------------------------------------------------
- [DefaultProperty( "FieldName" )]
- [Designer( typeof( UserFormFieldDesigner ) )]
- [ToolboxBitmap( typeof( ResFinder ), "Itenso.WebUserForms.Controls.Images.CheckBox.png" )]
- public class CheckBox : System.Web.UI.WebControls.CheckBox, IUserFormField
- {
- // ----------------------------------------------------------------------
- [DefaultValue( "" )]
- [Description( "CheckBox Form Field Name" )]
- [Category( "Web User Forms" )]
- public string FieldName
- {
- get { return this.fieldName; }
- set { this.fieldName = value; }
- } // FieldName
- // ----------------------------------------------------------------------
- [DefaultValue( "" )]
- [Description( "CheckBox Form Field Value" )]
- [Category( "Web User Forms" )]
- public string FieldValue
- {
- get { return Checked.ToString(); }
- set { Checked = bool.Parse( value ); }
- } // FieldValue
- // ----------------------------------------------------------------------
- [Browsable( false )]
- bool IUserFormField.AllowEdit
- {
- get { return Enabled; }
- set { Enabled = value; }
- } // AllowEdit
- // ----------------------------------------------------------------------
- public override string ToString()
- {
- return FormFieldTool.GetFieldDescription( this );
- } // ToString
- // ----------------------------------------------------------------------
- // members
- private string fieldName;
- } // class CheckBox
- } // namespace Itenso.WebUserForms.Controls
- // -- EOF -------------------------------------------------------------------