In Windows Forms, Label control is used to display text on the form and it does not take part in user input or in mouse or keyboard events. You are allowed to set the foreground color of the Label control using the ForeColor Property. It makes your label more attractive. It is an ambient property which means if we do not set the value of this property, it will automatically retrieve from the parent control. You can set this property using two different methods:
1. Design-Time: It is the easiest method to set the ForeColor property of the Label control using the following steps:
2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the foreground color of the Label control programmatically with the help of given syntax:
public virtual System.Drawing.Color ForeColor { get; set; }
Here, Color indicates the foreground color of the Label. Following steps are used to set the ForeColor property of the Label:
- Step 1: Create a label using the Label() constructor is provided by the Label class.
// Creating label using Label class
Label mylab = new Label();
- Step 2: After creating Label, set the ForeColor property of the Label provided by the Label class.
// Set ForeColor property of the label
mylab.ForeColor = Color.DarkBlue;
- Step 3: And last add this Label control to form using Add() method.
// Add this label to the form
this.Controls.Add(mylab);
Example:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp16 {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e)
{
Label mylab = new Label();
mylab.Text = "GeeksforGeeks" ;
mylab.Location = new Point(222, 90);
mylab.Size = new Size(120, 25);
mylab.BorderStyle = BorderStyle.FixedSingle;
mylab.BackColor = Color.LightBlue;
mylab.Font = new Font( "Calibri" , 12);
mylab.ForeColor = Color.DarkBlue;
this .Controls.Add(mylab);
}
}
}
|
Output:
