您可以创建label
类codebehind的实例
using System.Windows.Forms;
...
Label label = new Label();
//Now, you can assign values to the label properties
label.Text = "Welcome to Stackoverflow";
...
//Add this label to the form
this.Controls.Add(label);
MSDN文档:Label类