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 using the Click event handler.
Labels can be mutated through the event handler system. You can, for example, change the Text property whenever the user clicks on the label control.
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(); } } }
We can change the color and font of a Label. To change the color of the text, open the Properties window for the label and scroll to ForeColor
.
Select
a color. It would be best to use a system color. The user could have adjusted the theme colors in some way.ForeColor
was set to Red. This could help indicate a warning.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.
The Label control in the Windows Forms toolkit is the ideal container for small text fragments in your window. The appearance of Labels can be adjusted in many ways.