C# Windows Forms Label Examples

Let us look at a simple C# Windows Forms Label example.

Example 1: Label

This example will comprise the following files:

  • Label.cs

Step 1: Create Project

  1. The first step is to create a C# Project.
  2. Go to FILE-->New-->Project to create a new project.

Step 2: Write Code

Write Code as follows:

*(a). Label.cs

Create a file named Label.cs

Here is the full code

using System;
using System.Windows.Forms;

namespace Examples {
  class MainForm : Form {
    public static void Main() {
      Application.EnableVisualStyles();
      Application.Run(new MainForm());
    }

    public MainForm() {
      Text = "Label example";

      label1.Parent = this;
      label1.Text = "label1";
      label1.Location = new System.Drawing.Point(10, 10);
    }

    private Label label1 = new Label();
  }
}

Run

Simply copy the source code into your C# Project,Build and Run. Alternatively download the code using the links provided below, then open the .csproj project, build and run.

Reference

Download the code using the below links:

Number Link
1. Download Example
2. Follow code author

Related Posts