要在WinForms应用程序中使用TextBox控件,首先需要在窗体上拖放一个TextBox控件。然后可以通过代码或者属性窗口来设置TextBox控件的属性和事件。
以下是一些常见的用法示例:
textBox1.Text = "Hello, World!";
string text = textBox1.Text;
textBox1.Clear();
textBox1.ReadOnly = true;
textBox1.Multiline = true;
textBox1.BorderStyle = BorderStyle.FixedSingle;
textBox1.Text = "Please enter your name";
textBox1.ForeColor = Color.Gray;
以上是使用TextBox控件的一些基本用法示例,根据具体的需求可以进一步自定义TextBox控件的属性和事件。