How to set the Text in TextBox in C#? Last Updated : 17 Apr, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report In Windows forms, TextBox plays an important role. With the help of TextBox, the user can enter data in the application, it can be of a single line or of multiple lines. In TextBox, you are allowed to set the text associated with the TextBox by using the Text property of the TextBox. In Windows form, you can set this property in two different ways: 1. Design-Time: It is the simplest way to set the Text property of the TextBox as shown in the following steps: Step 1: Create a windows form. Visual Studio -> File -> New -> Project -> WindowsFormApp Step 2: Drag the TextBox control from the ToolBox and Drop it on the windows form. You can place TextBox anywhere on the windows form according to your need. Step 3: After drag and drop you will go to the properties of the TextBox control to set the Text property of the TextBox. Output: 2. Run-Time: It is a little bit tricky than the above method. In this method, you can set the Text property of the TextBox programmatically with the help of given syntax: public override string Text { get; set; } Here, the text is represented in the form of String. Following steps are used to set the Text property of the TextBox: Step 1 : Create a textbox using the TextBox() constructor provided by the TextBox class.// Creating textbox TextBox Mytextbox = new TextBox();Step 2 : After creating TextBox set the Text property of the TextBox provided by the TextBox class.// Set Text property Mytextbox.Text = "Enter City Name...";Step 3 : And last add this textbox control to form using Add() method.// Add this textbox to form this.Controls.Add(Mytextbox);Example: CSharp using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace my { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // Creating and setting the properties of Lable1 Label Mylablel = new Label(); Mylablel.Location = new Point(96, 54); Mylablel.Text = "City"; Mylablel.AutoSize = true; Mylablel.BackColor = Color.LightGray; // Add this label to form this.Controls.Add(Mylablel); // Creating and setting the properties of TextBox1 TextBox Mytextbox = new TextBox(); Mytextbox.Location = new Point(187, 51); Mytextbox.BackColor = Color.LightGray; Mytextbox.ForeColor = Color.DarkOliveGreen; Mytextbox.AutoSize = true; Mytextbox.Name = "text_box1"; Mytextbox.Text = "Enter City Name..."; // Add this textbox to form this.Controls.Add(Mytextbox); } } } Output: Comment More infoAdvertise with us Next Article How to set the Alignment of the Text in the TextBox in C#? A ankita_saini Follow Improve Article Tags : C# CSharp-Windows-Forms-Namespace Similar Reads How to set the Alignment of the Text in the TextBox in C#? In Windows forms, TextBox plays an important role. With the help of TextBox, the user can enter data in the application, it can be of a single line or of multiple lines. In TextBox, you are allowed to set the alignment of the text present in the TextBox by using the TextAlign Property of the TextBox 3 min read How to set the Location of the TextBox in C#? In Windows forms, TextBox plays an important role. With the help of TextBox, the user can enter data in the application, it can be of a single line or of multiple lines. In TextBox, you are allowed to set the coordinates of the upper-left corner of the TextBox control relative to the upper-left corn 3 min read How to provide name to the TextBox in C#? In Windows forms, TextBox plays an important role. With the help of TextBox, the user can enter data in the application, it can be of a single line or of multiple lines. In TextBox, you are allowed to assign a name to the TextBox control with the help of Name property of the TextBox. The default val 3 min read How to set Text on the Label in C#? In Windows Forms, Label control is used to display text on the form and it does not take part in user input or in mouse or keyboard events. You are allowed to set the text in the Label control using the Text Property. It makes your label more attractive. You can set this property using two different 3 min read How to Add Text in the RichTextBox in C#? In C#, RichTextBox control is a textbox which gives you rich text editing controls and advanced formatting features also includes a loading rich text format (RTF) files. Or in other words, RichTextBox controls allows you to display or edit flow content, including paragraphs, images, tables, etc. In 3 min read How to set text in the CheckBox in C#? The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the text in the CheckBox using the Text property of the CheckBox. I 3 min read Like