1 type derived from CheckBox
System.Web (1)
UI\WebControls\RadioButton.cs (1)
25public class RadioButton : CheckBox, IPostBackDataHandler {
15 instantiations of CheckBox
System.Web (14)
UI\WebControls\AutoGeneratedField.cs (2)
178CheckBox editor = new CheckBox(); 186CheckBox editor = new CheckBox();
UI\WebControls\CheckBoxField.cs (2)
277CheckBox editor = new CheckBox(); 286CheckBox editor = new CheckBox();
UI\WebControls\CheckBoxList.cs (1)
34_controlToRepeat = new CheckBox();
UI\WebControls\login.cs (1)
1819CheckBox rememberMeCheckBox = new CheckBox();
UI\WebParts\AppearanceEditorPart.cs (1)
212_hidden = new CheckBox();
UI\WebParts\BehaviorEditorPart.cs (6)
255_allowClose = new CheckBox(); 258_allowConnect = new CheckBox(); 261_allowHide = new CheckBox(); 264_allowMinimize = new CheckBox(); 267_allowZoneChange = new CheckBox(); 322_allowEdit = new CheckBox();
UI\WebParts\PropertyGridEditorPart.cs (1)
195return new CheckBox();
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
40var checkBox = new CheckBox();
52 references to CheckBox
System.Web (51)
UI\WebControls\AutoGeneratedField.cs (10)
147CheckBox checkBox = childControl as CheckBox; 174CheckBox childControl = null; 175CheckBox boundControl = null; 178CheckBox editor = new CheckBox(); 186CheckBox editor = new CheckBox(); 217if (!(boundControl is CheckBox)) { 221((CheckBox)boundControl).Checked = false; 225((CheckBox)boundControl).Checked = (Boolean)data; 229((CheckBox)boundControl).Checked = Boolean.Parse(data.ToString());
UI\WebControls\CheckBox.cs (12)
40/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.CheckBox'/> class.</para> 47/// <para>Gets or sets a value indicating that the <see cref='System.Web.UI.WebControls.CheckBox'/> state is automatically posted back to 87/// <see cref='System.Web.UI.WebControls.CheckBox'/>.</para> 188if ((t == typeof(CheckBox)) || (t == typeof(RadioButton))) { 197/// <para>Gets or sets the text label associated with the <see cref='System.Web.UI.WebControls.CheckBox'/>.</para> 218/// <para>Gets or sets the alignment of the <see langword='Text'/> associated with the <see cref='System.Web.UI.WebControls.CheckBox'/>.</para> 257/// <para>Occurs when the <see cref='System.Web.UI.WebControls.CheckBox'/> is clicked.</para> 311/// <see langword='CheckedChanged'/> event of the <see cref='System.Web.UI.WebControls.CheckBox'/> 324/// rendering on the client if <see cref='System.Web.UI.WebControls.CheckBox.AutoPostBack'/> is 395/// <para>Displays the <see cref='System.Web.UI.WebControls.CheckBox'/> on the client.</para> 584/// <para>Processes posted data for the <see cref='System.Web.UI.WebControls.CheckBox'/> 594/// <para>Processes posted data for the <see cref='System.Web.UI.WebControls.CheckBox'/>
UI\WebControls\CheckBoxField.cs (11)
240CheckBox checkBox = childControl as CheckBox; 272CheckBox childControl = null; 273CheckBox boundControl = null; 277CheckBox editor = new CheckBox(); 286CheckBox editor = new CheckBox(); 313if (!(boundControl is CheckBox)) { 317((CheckBox)boundControl).Checked = false; 321((CheckBox)boundControl).Checked = (Boolean)data; 325((CheckBox)boundControl).Checked = Boolean.Parse(data.ToString()); 332((CheckBox)boundControl).Text = Text;
UI\WebControls\CheckBoxList.cs (3)
19/// <para>Creates a group of <see cref='System.Web.UI.WebControls.CheckBox'/> controls.</para> 22private CheckBox _controlToRepeat; 222/// <para>Catches post data for each <see cref='System.Web.UI.WebControls.CheckBox'/> in the list.</para>
UI\WebControls\login.cs (3)
1540CheckBox rememberMeCheckBox = (CheckBox)container.RememberMeCheckBox; 1819CheckBox rememberMeCheckBox = new CheckBox();
UI\WebParts\AppearanceEditorPart.cs (1)
24private CheckBox _hidden;
UI\WebParts\BehaviorEditorPart.cs (6)
19private CheckBox _allowClose; 20private CheckBox _allowConnect; 21private CheckBox _allowHide; 22private CheckBox _allowMinimize; 23private CheckBox _allowZoneChange; 33private CheckBox _allowEdit;
UI\WebParts\EditorPart.cs (1)
180if (editUIControl is CheckBox) {
UI\WebParts\PropertyGridEditorPart.cs (4)
266CheckBox checkBox = editorControl as CheckBox; 339CheckBox checkBox = (CheckBox)control;
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
40var checkBox = new CheckBox();