要在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控件的屬性和事件。