How to use Label Control in C#

In this article, I will explain use Label Control in C#.
  • 3537

C# Label Control

  • A Label control is used as a display text on Forms.

  • Label provides static text that the user cannot change but can read to get information on a form.

Example

The following example shows how to set some properties of the Label by coding.

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

 namespace WindowsFormsApplication2

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void Form1_Load(object sender, EventArgs e)

        {

            this.Text="Label Example";

            label1.Text="This is the label example";

            label1.BorderStyle= BorderStyle.Fixed3D;

            label1.TextAlign = ContentAlignment.MiddleCenter;

        }

    }

}

 

Output


 label example.jpg

Further Readings

You may also want to read these related articles here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.