21 writes to ReadOnly
System.Web.Mobile (2)
UI\MobileControls\Design\StylesEditorDialog.cs (1)
272_txtType.ReadOnly = true;
UI\MobileControls\Design\Util\HeaderLabel.cs (1)
28ReadOnly = true;
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (1)
473edit.ReadOnly = readOnly || ReadOnly || this.DataGridTableStyle.ReadOnly;
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1050base.ReadOnly = value;
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (1)
279this.details.ReadOnly = true;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
4489Edit.ReadOnly = drawReadOnly || !gridEntry.IsTextEditable;
winforms\Managed\System\WinForms\ThreadExceptionDialog.cs (1)
348details.ReadOnly = true;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
423set { TextBox.ReadOnly = value; }
winforms\Managed\System\WinForms\UpDownBase.cs (1)
569upDownEdit.ReadOnly = value;
System.Workflow.Activities (1)
Rules\Design\Dialogs\BasicBrowserDialog.Designer.cs (1)
180this.previewRichTextBox.ReadOnly = true;
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Dialogs\ActivityBindForm.Designer.cs (2)
86this.helpTextBox.ReadOnly = true; 140this.newMemberHelpTextBox.ReadOnly = true;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (3)
172this.helpTextHolder.ReadOnly = true; 292this.artifactLabel.ReadOnly = true; 1199this.ReadOnly = true;
System.WorkflowServices (3)
System\Workflow\Activities\Design\ServiceContractDetailViewControl.cs (2)
28contractNameTextBox.ReadOnly = true; 31this.contractNameTextBox.ReadOnly = false;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
604this.operationNameTextBox.ReadOnly = !editable;
WsatUI (3)
MMCUI\WSATControl.designer.cs (3)
68this.textBoxNetworkDtcAccess.ReadOnly = true; 84this.textBox1.ReadOnly = true; 175this.textBoxEndpointCert.ReadOnly = true;
11 references to ReadOnly
System.Windows.Forms (11)
winforms\Managed\System\WinForms\DataGridTextBox.cs (1)
84if (this.ReadOnly)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (3)
311if (!edit.ReadOnly && displayText != null) 476if (!edit.ReadOnly && displayText != null) { 507if (!edit.ReadOnly) {
winforms\Managed\System\WinForms\MaskedTextBox.cs (1)
1042return base.ReadOnly;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6907if (this.ReadOnly) {
winforms\Managed\System\WinForms\TextBoxBase.cs (3)
298else if (this.ReadOnly) { 443bool canEnable = !( this.ReadOnly || this.PasswordProtect ) && base.CanEnableIme; 1531if (!this.ReadOnly)
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
422get { return TextBox.ReadOnly; }
winforms\Managed\System\WinForms\UpDownBase.cs (1)
565return upDownEdit.ReadOnly;