31 writes to ReadOnly
PresentationUI (24)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (22)
212
this._language.
ReadOnly
= true;
222
this._title.
ReadOnly
= true;
239
this._identifier.
ReadOnly
= true;
296
this._version.
ReadOnly
= true;
313
this._category.
ReadOnly
= true;
322
this._status.
ReadOnly
= true;
331
this._content.
ReadOnly
= true;
349
this._author.
ReadOnly
= true;
358
this._subject.
ReadOnly
= true;
368
this._description.
ReadOnly
= true;
379
this._keywords.
ReadOnly
= true;
476
this._size.
ReadOnly
= true;
494
this._filename.
ReadOnly
= true;
504
this._documentType.
ReadOnly
= true;
562
this._documentPrintedDate.
ReadOnly
= true;
571
this._documentModifiedDate.
ReadOnly
= true;
580
this._documentCreatedDate.
ReadOnly
= true;
589
this._revision.
ReadOnly
= true;
638
this._lastSaved.
ReadOnly
= true;
678
this._fileModifiedDate.
ReadOnly
= true;
687
this._fileAccessedDate.
ReadOnly
= true;
712
this._fileCreatedDate.
ReadOnly
= true;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (2)
166
this.textBoxUnrestrictedText.
ReadOnly
= true;
267
this.textBoxPermissionsContact.
ReadOnly
= true;
System.Windows.Forms (6)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
253
ReadOnly
= true,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
4414
EditTextBox.
ReadOnly
= drawReadOnly || !gridEntry.IsTextEditable;
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
938
base.
ReadOnly
= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (1)
301
set { TextBox.
ReadOnly
= value; }
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
363
set => _upDownEdit.
ReadOnly
= value;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
323
_details.
ReadOnly
= true;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
458
ReadOnly
= true,
10 references to ReadOnly
System.Windows.Forms (10)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
347
if (
ReadOnly
)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
931
get => base.
ReadOnly
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (4)
205
if (!
ReadOnly
&& (keyData == (Keys.Control | Keys.Back) || keyData == (Keys.Control | Keys.Shift | Keys.Back)))
288
return
ReadOnly
382
protected override bool CanEnableIme => !(
ReadOnly
|| PasswordProtect) && base.CanEnableIme;
1349
if (!
ReadOnly
)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
57
internal override bool IsReadOnly => this.TryGetOwnerAs(out TextBoxBase? owner) && owner.
ReadOnly
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
218
public override bool IsReadOnly => Owner is not null && Owner.
ReadOnly
;
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (1)
300
get { return TextBox.
ReadOnly
; }
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
362
get => _upDownEdit.
ReadOnly
;