How to: Create a Read-Only Text Box (Windows Forms)
You can transform an editable Windows Forms text box into a read-only control. For example, the text box may display a value that is usually edited but may not be currently, due to the state of the application.
To create a read-only text box
Set the TextBox control's ReadOnly property to
true
. With the property set totrue
, users can still scroll and highlight text in a text box without allowing changes. A Copy command is functional in a text box, but Cut and Paste commands are not.
See also
- TextBox
- TextBox Control Overview
- How to: Control the Insertion Point in a Windows Forms TextBox Control
- How to: Create a Password Text Box with the Windows Forms TextBox Control
- How to: Put Quotation Marks in a String
- How to: Select Text in the Windows Forms TextBox Control
- How to: View Multiple Lines in the Windows Forms TextBox Control
- TextBox Control
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET Desktop feedback