1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
//------------------------------------------------------------------------------
// <copyright file="DropDownList.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
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;
/// <devdoc>
/// <para>Creates a control that allows the user to select a single item from a
/// drop-down list.</para>
/// </devdoc>
[
SupportsEventValidation,
ValidationProperty("SelectedItem")
]
public class DropDownList : ListControl, IPostBackDataHandler {
/// <devdoc>
/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.DropDownList'/> class.</para>
/// </devdoc>
public DropDownList() {
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[
Browsable(false)
]
public override Color BorderColor {
get {
return base.BorderColor;
}
set {
base.BorderColor = value;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[
Browsable(false)
]
public override BorderStyle BorderStyle {
get {
return base.BorderStyle;
}
set {
base.BorderStyle = value;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[
Browsable(false)
]
public override Unit BorderWidth {
get {
return base.BorderWidth;
}
set {
base.BorderWidth = value;
}
}
public override bool SupportsDisabledAttribute {
get {
return true;
}
}
/// <devdoc>
/// <para>Gets or sets the index of the item selected by the user
/// from the <see cref='System.Web.UI.WebControls.DropDownList'/>
/// control.</para>
/// </devdoc>
[
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);
}
/// <internalonly/>
/// <devdoc>
/// <para>Process posted data for the <see cref='System.Web.UI.WebControls.DropDownList'/> control.</para>
/// </devdoc>
bool IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) {
return LoadPostData(postDataKey, postCollection);
}
/// <internalonly/>
/// <devdoc>
/// <para>Process posted data for the <see cref='System.Web.UI.WebControls.DropDownList'/> control.</para>
/// </devdoc>
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);
EnsureDataBoundInLoadPostData();
if (selectedItems != null) {
ValidateEvent(postDataKey, selectedItems[0]);
int n = Items.FindByValueInternal(selectedItems[0], false);
if (SelectedIndex != n) {
SetPostDataSelection(n);
return true;
}
}
return false;
}
/// <internalonly/>
/// <devdoc>
/// <para>Raises events for the <see cref='System.Web.UI.WebControls.DropDownList'/> control on post back.</para>
/// </devdoc>
void IPostBackDataHandler.RaisePostDataChangedEvent() {
RaisePostDataChangedEvent();
}
/// <internalonly/>
/// <devdoc>
/// <para>Raises events for the <see cref='System.Web.UI.WebControls.DropDownList'/> control on post back.</para>
/// </devdoc>
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"));
}
}
}
|