One useful control in Windows Forms is the Label control. This control serves as an invisible frame where you can place text. Labels can have lots of text, but often only have a few words. They can be mutated in your C# code, and also allow event handlers.
This C# tutorial shows how to use the Label control in Windows Forms.


As with other Windows Forms controls, the Label control should be added by opening the Toolbox pane and dragging or double-clicking the Label item. Initially, the label will have the Text property set as "label1"; obviously, this is not what you will want it to read in your finished application. Please right-click on the label and select Properties; then, scroll down to Text and you can change what the label reads. The Text property can also be set in the C# code; please see the section "Event example" below for more details.

Changing the colors and fonts of label controls in Windows Forms is necessary is some cases; in many cases, it is not useful and may actually detract from the appearance of your program. To change the color of the text, open the Properties window for the label and scroll to ForeColor. Then, select a color. It would be best to use a system color in case the user has adjusted the theme colors in some way or is using an older or newer version of Windows.
Note: In the screenshot, the ForeColor was set to Red.

Font. It is also possible to change the font and font size. These options are available when you select Properties and then Font, and then expand the Font item with the plus sign. You can change many of the individual options for the Font on the label. You can, for example, set that the font be bold here.
Labels are not simply static controls in Windows Forms; they can be mutated through the event handler system as with other controls. You can, for example, change the Text property whenever the user clicks on the label control. To add the Click event handler, please open Properties and click on the lightning bolt. Then, double-click on the Click item.
Program that uses Click event handler on Label [C#]
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
// Change the text of the label to a random file name.
// ... Occurs when you click on the label.
label1.Text = System.IO.Path.GetRandomFileName();
}
}
}
The Label control in the Windows Forms toolkit is the ideal container for small text fragments and, fittingly, for labeling other controls in your window. But the label need not be static: through the event model, you can mutate the Text property, the coloring, and other properties.
Windows Forms