Implemented interface member:
property
Checked
System.Web.UI.ICheckBoxControl.Checked
20 writes to Checked
System.Web (19)
UI\WebControls\AutoGeneratedField.cs (3)
221
((CheckBox)boundControl).
Checked
= false;
225
((CheckBox)boundControl).
Checked
= (Boolean)data;
229
((CheckBox)boundControl).
Checked
= Boolean.Parse(data.ToString());
UI\WebControls\CheckBox.cs (1)
609
Checked
= isChecked;
UI\WebControls\CheckBoxField.cs (3)
317
((CheckBox)boundControl).
Checked
= false;
321
((CheckBox)boundControl).
Checked
= (Boolean)data;
325
((CheckBox)boundControl).
Checked
= Boolean.Parse(data.ToString());
UI\WebControls\CheckBoxList.cs (1)
550
_controlToRepeat.
Checked
= item.Selected;
UI\WebControls\RadioButton.cs (2)
138
Checked
= true;
145
Checked
= false;
UI\WebControls\RadioButtonList.cs (1)
508
controlToRepeat.
Checked
= item.Selected;
UI\WebParts\AppearanceEditorPart.cs (1)
293
_hidden.
Checked
= webPart.Hidden;
UI\WebParts\BehaviorEditorPart.cs (6)
415
_allowClose.
Checked
= webPart.AllowClose;
418
_allowConnect.
Checked
= webPart.AllowConnect;
420
_allowHide.
Checked
= webPart.AllowHide;
423
_allowMinimize.
Checked
= webPart.AllowMinimize;
426
_allowZoneChange.
Checked
= webPart.AllowZoneChange;
442
_allowEdit.
Checked
= webPart.AllowEdit;
UI\WebParts\PropertyGridEditorPart.cs (1)
340
checkBox.
Checked
= (bool)pd.GetValue(instance);
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
44
checkBox.
Checked
= (bool)control.FieldValue;
18 references to Checked
System.Web (17)
UI\WebControls\AutoGeneratedField.cs (1)
150
value = checkBox.
Checked
;
UI\WebControls\CheckBox.cs (2)
524
if (
Checked
)
608
dataChanged = (isChecked !=
Checked
);
UI\WebControls\CheckBoxField.cs (1)
243
value = checkBox.
Checked
;
UI\WebControls\RadioButton.cs (5)
137
if (
Checked
== false) {
144
if (
Checked
== true) {
188
if (Page != null && !
Checked
&& Enabled) {
204
if (
Checked
)
217
if (AutoPostBack && !
Checked
&& Page != null) {
UI\WebParts\AppearanceEditorPart.cs (1)
163
webPart.Hidden = _hidden.
Checked
;
UI\WebParts\BehaviorEditorPart.cs (6)
109
webPart.AllowClose = _allowClose.
Checked
;
118
webPart.AllowConnect = _allowConnect.
Checked
;
126
webPart.AllowHide = _allowHide.
Checked
;
135
webPart.AllowMinimize = _allowMinimize.
Checked
;
144
webPart.AllowZoneChange = _allowZoneChange.
Checked
;
241
webPart.AllowEdit = _allowEdit.
Checked
;
UI\WebParts\PropertyGridEditorPart.cs (1)
268
return checkBox.
Checked
;
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
49
control._valueExtrator = () => checkBox.
Checked
;