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