1 type derived from CheckBox
System.Web (1)
UI\WebControls\RadioButton.cs (1)
25
public class RadioButton :
CheckBox
, IPostBackDataHandler {
15 instantiations of CheckBox
System.Web (14)
UI\WebControls\AutoGeneratedField.cs (2)
178
CheckBox editor = new
CheckBox
();
186
CheckBox editor = new
CheckBox
();
UI\WebControls\CheckBoxField.cs (2)
277
CheckBox editor = new
CheckBox
();
286
CheckBox editor = new
CheckBox
();
UI\WebControls\CheckBoxList.cs (1)
34
_controlToRepeat = new
CheckBox
();
UI\WebControls\login.cs (1)
1819
CheckBox 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)
195
return new
CheckBox
();
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
40
var checkBox = new
CheckBox
();
52 references to CheckBox
System.Web (51)
UI\WebControls\AutoGeneratedField.cs (10)
147
CheckBox
checkBox = childControl as
CheckBox
;
174
CheckBox
childControl = null;
175
CheckBox
boundControl = null;
178
CheckBox
editor = new CheckBox();
186
CheckBox
editor = new CheckBox();
217
if (!(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>
188
if ((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)
240
CheckBox
checkBox = childControl as
CheckBox
;
272
CheckBox
childControl = null;
273
CheckBox
boundControl = null;
277
CheckBox
editor = new CheckBox();
286
CheckBox
editor = new CheckBox();
313
if (!(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>
22
private
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)
1540
CheckBox
rememberMeCheckBox = (
CheckBox
)container.RememberMeCheckBox;
1819
CheckBox
rememberMeCheckBox = new CheckBox();
UI\WebParts\AppearanceEditorPart.cs (1)
24
private
CheckBox
_hidden;
UI\WebParts\BehaviorEditorPart.cs (6)
19
private
CheckBox
_allowClose;
20
private
CheckBox
_allowConnect;
21
private
CheckBox
_allowHide;
22
private
CheckBox
_allowMinimize;
23
private
CheckBox
_allowZoneChange;
33
private
CheckBox
_allowEdit;
UI\WebParts\EditorPart.cs (1)
180
if (editUIControl is
CheckBox
) {
UI\WebParts\PropertyGridEditorPart.cs (4)
266
CheckBox
checkBox = editorControl as
CheckBox
;
339
CheckBox
checkBox = (
CheckBox
)control;
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
40
var
checkBox = new CheckBox();