Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DropDownList.cs / 1305376 / DropDownList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Collections.Specialized; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.WebControls.Adapters; ////// [ SupportsEventValidation, ValidationProperty("SelectedItem") ] public class DropDownList : ListControl, IPostBackDataHandler { ///Creates a control that allows the user to select a single item from a /// drop-down list. ////// public DropDownList() { } ///Initializes a new instance of the ///class. /// [ Browsable(false) ] public override Color BorderColor { get { return base.BorderColor; } set { base.BorderColor = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override BorderStyle BorderStyle { get { return base.BorderStyle; } set { base.BorderStyle = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override Unit BorderWidth { get { return base.BorderWidth; } set { base.BorderWidth = value; } } public override bool SupportsDisabledAttribute { get { return true; } } ///[To be supplied.] ////// [ WebCategory("Behavior"), DefaultValue(0), WebSysDescription(SR.WebControl_SelectedIndex), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override int SelectedIndex { get { int selectedIndex = base.SelectedIndex; if (selectedIndex < 0 && Items.Count > 0) { Items[0].Selected = true; selectedIndex = 0; } return selectedIndex; } set { base.SelectedIndex = value; } } internal override ArrayList SelectedIndicesInternal { get { int sideEffect = SelectedIndex; return base.SelectedIndicesInternal; } } protected override void AddAttributesToRender(HtmlTextWriter writer) { string uniqueID = UniqueID; if (uniqueID != null) { writer.AddAttribute(HtmlTextWriterAttribute.Name, uniqueID); } base.AddAttributesToRender(writer); } protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } ///Gets or sets the index of the item selected by the user /// from the ////// control. /// /// bool IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) { return LoadPostData(postDataKey, postCollection); } ///Process posted data for the ///control. /// /// protected virtual bool LoadPostData(String postDataKey, NameValueCollection postCollection) { // When a DropDownList is disabled, then there is no postback data for it. // Since DropDownList doesn't call RegisterRequiresPostBack, this method will // never be called, so we don't need to worry about ignoring empty postback data. string [] selectedItems = postCollection.GetValues(postDataKey); EnsureDataBound(); if (selectedItems != null) { ValidateEvent(postDataKey, selectedItems[0]); int n = Items.FindByValueInternal(selectedItems[0], false); if (SelectedIndex != n) { SetPostDataSelection(n); return true; } } return false; } ///Process posted data for the ///control. /// /// void IPostBackDataHandler.RaisePostDataChangedEvent() { RaisePostDataChangedEvent(); } ///Raises events for the ///control on post back. /// /// protected virtual void RaisePostDataChangedEvent() { if (AutoPostBack && !Page.IsPostBackEventControlRegistered) { // VSWhidbey 204824 Page.AutoPostBackControl = this; if (CausesValidation) { Page.Validate(ValidationGroup); } } OnSelectedIndexChanged(EventArgs.Empty); } protected internal override void VerifyMultiSelect() { throw new HttpException(SR.GetString(SR.Cant_Multiselect, "DropDownList")); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Raises events for the ///control on post back. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Collections.Specialized; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.WebControls.Adapters; ////// [ SupportsEventValidation, ValidationProperty("SelectedItem") ] public class DropDownList : ListControl, IPostBackDataHandler { ///Creates a control that allows the user to select a single item from a /// drop-down list. ////// public DropDownList() { } ///Initializes a new instance of the ///class. /// [ Browsable(false) ] public override Color BorderColor { get { return base.BorderColor; } set { base.BorderColor = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override BorderStyle BorderStyle { get { return base.BorderStyle; } set { base.BorderStyle = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override Unit BorderWidth { get { return base.BorderWidth; } set { base.BorderWidth = value; } } public override bool SupportsDisabledAttribute { get { return true; } } ///[To be supplied.] ////// [ WebCategory("Behavior"), DefaultValue(0), WebSysDescription(SR.WebControl_SelectedIndex), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override int SelectedIndex { get { int selectedIndex = base.SelectedIndex; if (selectedIndex < 0 && Items.Count > 0) { Items[0].Selected = true; selectedIndex = 0; } return selectedIndex; } set { base.SelectedIndex = value; } } internal override ArrayList SelectedIndicesInternal { get { int sideEffect = SelectedIndex; return base.SelectedIndicesInternal; } } protected override void AddAttributesToRender(HtmlTextWriter writer) { string uniqueID = UniqueID; if (uniqueID != null) { writer.AddAttribute(HtmlTextWriterAttribute.Name, uniqueID); } base.AddAttributesToRender(writer); } protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } ///Gets or sets the index of the item selected by the user /// from the ////// control. /// /// bool IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) { return LoadPostData(postDataKey, postCollection); } ///Process posted data for the ///control. /// /// protected virtual bool LoadPostData(String postDataKey, NameValueCollection postCollection) { // When a DropDownList is disabled, then there is no postback data for it. // Since DropDownList doesn't call RegisterRequiresPostBack, this method will // never be called, so we don't need to worry about ignoring empty postback data. string [] selectedItems = postCollection.GetValues(postDataKey); EnsureDataBound(); if (selectedItems != null) { ValidateEvent(postDataKey, selectedItems[0]); int n = Items.FindByValueInternal(selectedItems[0], false); if (SelectedIndex != n) { SetPostDataSelection(n); return true; } } return false; } ///Process posted data for the ///control. /// /// void IPostBackDataHandler.RaisePostDataChangedEvent() { RaisePostDataChangedEvent(); } ///Raises events for the ///control on post back. /// /// protected virtual void RaisePostDataChangedEvent() { if (AutoPostBack && !Page.IsPostBackEventControlRegistered) { // VSWhidbey 204824 Page.AutoPostBackControl = this; if (CausesValidation) { Page.Validate(ValidationGroup); } } OnSelectedIndexChanged(EventArgs.Empty); } protected internal override void VerifyMultiSelect() { throw new HttpException(SR.GetString(SR.Cant_Multiselect, "DropDownList")); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Raises events for the ///control on post back.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- JsonReaderDelegator.cs
- SmiRequestExecutor.cs
- ExecutionEngineException.cs
- TypeListConverter.cs
- InvalidAsynchronousStateException.cs
- ParserOptions.cs
- WebResourceAttribute.cs
- ConnectionsZone.cs
- ProcessHostFactoryHelper.cs
- DataSourceXmlElementAttribute.cs
- SrgsText.cs
- WindowsListViewItemStartMenu.cs
- ToolStripComboBox.cs
- WebConfigurationHost.cs
- Executor.cs
- MediaTimeline.cs
- CancelAsyncOperationRequest.cs
- TypeUsageBuilder.cs
- validationstate.cs
- Types.cs
- IUnknownConstantAttribute.cs
- ThreadStartException.cs
- ConfigXmlAttribute.cs
- OutKeywords.cs
- MetadataItemCollectionFactory.cs
- SessionEndedEventArgs.cs
- OutputCacheProfileCollection.cs
- ShapingEngine.cs
- DocumentReferenceCollection.cs
- KeyEvent.cs
- GeneralTransform3DGroup.cs
- UnsafeNativeMethods.cs
- Model3DCollection.cs
- Atom10FormatterFactory.cs
- UnsafeNativeMethods.cs
- SQLInt16.cs
- HttpDictionary.cs
- RowSpanVector.cs
- Transactions.cs
- XmlSecureResolver.cs
- SimpleRecyclingCache.cs
- QuaternionAnimation.cs
- XmlArrayItemAttributes.cs
- ErrorFormatterPage.cs
- ReachVisualSerializerAsync.cs
- BamlRecords.cs
- ContainerUtilities.cs
- StructuralCache.cs
- ItemsPresenter.cs
- Exceptions.cs
- MemberDescriptor.cs
- NotConverter.cs
- SymmetricCryptoHandle.cs
- XmlExceptionHelper.cs
- PropertyNames.cs
- SchemaNamespaceManager.cs
- FocusManager.cs
- TrackingDataItem.cs
- ObsoleteAttribute.cs
- RadioButtonBaseAdapter.cs
- DocumentReference.cs
- MissingMemberException.cs
- JournalEntry.cs
- TokenizerHelper.cs
- ParentControlDesigner.cs
- StateDesigner.Helpers.cs
- VisualBasicSettings.cs
- OperationFormatStyle.cs
- StringWriter.cs
- AttributeAction.cs
- QilCloneVisitor.cs
- PropertyChangeTracker.cs
- brushes.cs
- PersonalizationEntry.cs
- RestHandler.cs
- MediaTimeline.cs
- FlowNode.cs
- UnsafePeerToPeerMethods.cs
- SmtpNtlmAuthenticationModule.cs
- HtmlButton.cs
- DefaultAssemblyResolver.cs
- Transform3D.cs
- FileClassifier.cs
- CorrelationQuery.cs
- SchemaCollectionPreprocessor.cs
- QueryCreatedEventArgs.cs
- LineGeometry.cs
- ComponentCollection.cs
- Attribute.cs
- DefinitionUpdate.cs
- PipelineModuleStepContainer.cs
- EntityViewGenerationAttribute.cs
- SemanticBasicElement.cs
- DetailsViewInsertEventArgs.cs
- DataGridViewRow.cs
- StateManagedCollection.cs
- DbProviderFactory.cs
- SettingsPropertyValue.cs
- UnicodeEncoding.cs
- BidOverLoads.cs