文本框输入内容,标签显示 的 c#的代码
时间: 2024-09-15 09:07:33 浏览: 41
C#判断多个文本框是否为空的方法
在C#中,你可以使用Windows Forms或WPF来创建包含文本框和标签的用户界面。这里是一个简单的例子,展示如何在Windows Form上创建一个Text Box控件和Label控件,并将Text Box的内容绑定到Label的显示:
```csharp
using System;
using System.Windows.Forms;
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
// 创建TextBox控件
TextBox textBox = new TextBox();
textBox.Location = new Point(50, 50); // 设置位置
textBox.Size = new Size(200, 20); // 设置大小
this.Controls.Add(textBox);
// 创建Label控件
Label label = new Label();
label.Text = "请输入内容:" + textBox.Text; // 绑定TextBox内容
label.Location = new Point(50, 80);
label.Size = new Size(200, 20);
this.Controls.Add(label);
}
}
// 如果这是窗体类,需要放在Main函数里启动
static void Main()
{
Application.Run(new MainForm());
}
```
在这个示例中,当用户在Text Box中输入内容时,Label会实时地显示TextBox的内容。
阅读全文