C# Tutorial

C# Tutorial C# First Application C# Variables C# Data Types C# Operators C# Keywords

C# Control Statement

C# If Statements C# Switch Statements C# for Loop C# While Loop C# do While loop C# Jump Statements C# Function C# functions with out variable

C# Arrays

C# Arrays

C# Function

C# Function call by value C# Call by reference C# Passing array to function C# Multidimensional Arrays C# Jagged Arrays C# Params C# Array Class C# Command Line Arguments

C# Object Class

C# Object and Classes C# Constructors C# Destructor C# this Keyword C# static field C# static class C# Static Constructor C# Structs C# enum C# Properties

C# Inheritance

C# Inheritance C# Multilevel Inheritance C# Aggregation C# Member overloading C# Method Overriding C# Base

C# Polymorphism

C# Polymorphism C# Sealed

C# Abstraction

C# Abstraction C# Interface

C# Namespace

C# Namespace C# Access Modifiers C# Encapsulation

C# Strings

C# String

C# Misc

C# Design Patterns Dictionary in C# Boxing and Unboxing in C# Ref and Out in C# Serialization in C# Dispose and Finalize in C# CONSOLE LOG IN C# Get File extension in C# Insert query in c# Difference Between List and Dictionary in C# Getters and Setters in C# Extension Methods in C# Insert query in c# CONSOLE LOG IN C# Get File extension in C# Random.NextDouble() Method in C# Binary Search in C# Difference between Delegates and Interfaces in C# Double.IsFinite() Method in C# Index Constructor in C# Abstraction in C# Basic OOPS Concepts In C# Queue.CopyTo() Method in C# single.compareto() method in C# C# Throw Exception in Constructor DECODE IN C# file.setlastwritetimeutc() method in C# Convert Object to List in C# convert.ToSByte(string, IFormatProvider) Method in C# C# Declare Delegate in Interface console.TreatControl C As Input property in C# Copying the queue elements to 1-D Array in C# Array.Constrainedcopy() Method in C# C# in and out Char.IsLetterOrDigit() method in C# Debugging in C# decimal.compare() method in C# Difference between Console.Read and Console.Readline in C# Metadata in C# C# Event Handler Example Default Interface Methods in C# Difference between hashtable and dictionary in C# C# program to implement IDisposable Interface Encapsulation in C# SortedList.IndexOfVaalue(Object) Method in C# Hash Maps in C# How to clear text files in C# How to Convert xls to xlsx in C# Foreach loop in C# FIFO in C# How to handle null exception in C# Type.Is Instance Of Type() Method in C# How to add data into MySQL database using C# How to use angular js in ASP net Csharp decimal.compare() method in Csharp Difference between Console.Read and Console.Readline in Csharp How to Implement Interface in Csharp char.IsUpper() Method in C# Index Of Any() Method in C# Quantifiers in C# C# program to Get Extension of a Given File C# Error Logging C# ENCRIPTION Can we create an object for Abstract Class in C# Console.CursorVisible in C# SortedDictionary Implementation in C# C# Hash Table with Examples Setting the Location of the Label in c# Collections in c# Virtual Keyword in C# Reverse of string in C# String and StringBuilder in C# Encapsulation in C# SortedList.IndexOfVaalue(Object) Method in C# Hash Maps in C# How to clear text files in C# How to Convert xls to xlsx in C# Foreach loop in C# FIFO in C# How to handle null exception in C# Type.Is Instance Of Type() Method in C# How to add data into MySQL database using C# How to use angular js in ASP net Csharp decimal.compare() method in Csharp Difference between Console.Read and Console.Readline in Csharp How to Implement Interface in Csharp char.IsUpper() Method in C# Index Of Any() Method in C# Quantifiers in C# C# program to Get Extension of a Given File Difference between ref and out in C# Singleton Class in C# Const And Readonly In Csharp BinaryReader and BinaryWriter in C# C# Attributes C# Delegates DirectoryInfo Class in C# Export and Import Excel Data in C# File Class in C# FileInfo Class in C# How to Cancel Parallel Operations in C#? Maximum Degree of Parallelism in C# Parallel Foreach Loop in C# Parallel Invoke in C# StreamReader and StreamWriter in C# TextReader and TextWriter in C# AsQueryable() in C# Basic Database Operations Using C# C# Anonymous Methods C# Events C# Generics C# Indexers C# Multidimensional Indexers C# Multithreading C# New Features C# Overloading of Indexers Difference between delegates and events in C# Operator overloading in C# Filter table in C# C# Queue with Examples C# Sortedlist With Examples C# Stack with Examples C# Unsafe Code File Handling in C# HashSet in C# with Examples List Implementation in C# SortedSet in C# with Examples C# in Depth Delegates and Events in C# Finally Block in C# How to Split String in C# Loggers in C# Nullable Types in C# REVERSE A STRING IN C# TYPE CASTING IN C# What is Generics in C# ABSTRACT CLASS IN C# Application of pointer in C# Await in c# READONLY AND CONSTANT IN C# Type safe in C# Types of Variables in c# Use of delegates in c# ABSTRACT CLASS IN C# Application of pointer in C# Await in c# READONLY AND CONSTANT IN C# Type safe in C# Types of Variables in c# Use of delegates in c# ABSTRACT CLASS IN C# Application of pointer in C# Await in c# READONLY AND CONSTANT IN C# Type safe in C# Types of Variables in c# Use of delegates in c# Atomic Methods Thread Safety and Race Conditions in C# Parallel LINQ in C# Design Principles in C# Difference Between Struct And Class In C# Difference between Abstraction and Encapsulation in C# Escape Sequence Characters in C# What is IOC in C# Multiple Catch blocks in C# Appdomain in C# Call back methods in C# Change Datetime format in C# Declare String array in C# Default Access Specifier in c# Foreach in LINQ C# How to compare two lists in C# How to Convert String to Datetime in c# How to get only Date from DateTime in C# Ispostback in asp net C# JSON OBJECT IN C# JSON STRINGIFY IN C# LAMBDA FUNCTION IN C# LINQ Lambda Expression in C# Microservices in C# MSIL IN C# Reference parameter in C# Shadowing(Method hiding) in C# Solid principles in C# Static Members in C# Task run in C# Transaction scope in C# Type Conversion in c# Unit of Work in C# Unit Test Cases in c# User Defined Exception in c# Using Keyword in C# Var Keyword in C# What is gac in C#

Setting the Location of the Label in c#

The Label control in Windows Forms displays text on the form, it is not involved in user input or mouse or keyboard actions. Using the Location Property in the Windows form, can specify the Location of the Label control. These coordinates in this attribute define the upper-left corner, or roughly the upper-left corner of its form, of the Label control. You have two options for defining this property:

1. Design Team:

The following steps are the simplest way to set the Location attribute of the Label control:

  • Step 1:

Create a window.

Visual Studio -> File -> New -> Project -> WindowsFormApp.

  • Step 2:

Drop the Label control from the ToolBox onto the Windows form by dragging it there. You can place a Label control wherever you need it on the Windows form.

  • Step 3:

After dragging and dropping, you should go to the Label control settings to set the Label's Location property.

2. Run-Time:

It is slightly more challenging than the prior approach. You can programmatically set the position of the Label control in Windows forms by utilizing the following syntax:

public System.Drawing.Point Location { get; set; }

The upper-left corner of the Label control and the upper-left corner of its form are connected at the Point in this instance.

The Label's Position property is set using the procedures listed below:

  • Step 1:

The Label class provides the constructor Label() for creating labels.

// Creating label using Label class

Label mylab = new Label();
  • Step 2:

Set the position attribute of the Label that the Label class provides after constructing it.

// Set the Location property of the label

mylab.Location = new Point(222, 90);
  • Step 3:

Use the Add() method lastly to add this Label control to the form.

// Add this Label to the form

this.Controls.Add(mylab);

You can specify the Location of a label control in C# by using the Location property. The Location attribute displays the Label's top-left corner's x, and y coordinates about its container.

In the above steps, you want to set the position for the label control represented by the Label. The Location property of the System is set using an entire new instance of the System.Drawing.Point structure, where the x and y coordinates are specified in pixels.

Finally, you may use the Controls to put the Label on a container, such as a form. Method Add().through changing the values supplied to the new System. Drawing.Point() allows you to change the Label's Location inside its container to suit your needs.

Add Code to the form:

  1. Double-click this button to bring up the Form 1.cs window from Form 1.cs [Design] window.

(Alternatively, expand Form1.cs in Solution Explorer and select Form1 from the list.)

2. Type or enter lblHelloWorld after the private void line in Form 1.cs window."Hello World!" is the text, as shown in the following Code:

Program:

The following Code of the program will be:

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)

            {

                        // Creating and setting the label

                        Label mylab = new Label();

                        mylab.Text = "Javatpoint";

                        mylab.Location = new Point(222, 90);

                        mylab.AutoSize = true;

                        mylab.Font = new Font("Calibri", 18);

                        mylab.ForeColor = Color.Green;

                        // Adding this control to the form

                        this.Controls.Add(mylab);

            }

}

}

OUTPUT:

The output of the following program will be:

Javatpoint

Run the Application:

Step 1:

To start the application, choose the Start button. There will be a number of things. It will launch the Visual Studio IDE and display the Diagnostics Tools and Output windows. However, a Form1 dialogue box shows outside of the IDE. It will have a label1 text box, and you Click this button.

Step 2:

In the Form1 dialogue box, click the button option. The label1 text changes to Hello world we have to notice that one.

Step 3:

To end the application's execution, close the Form1 dialogue box.

Conclusion:

The Location of a label control in C# can be specified using the Location attribute. This feature can specify the top-left corner of the Label's container's x and y coordinates by starting a brand-new instance of the System.

You can specify the desired coordinates for the Label by creating a point structure and adding it to the Location attribute. Finally, you may use the Controls to put the Label on a container, such as a form. Method Add(). by changing the values that the new System received. The Label can be positioned inside its container using the Point() constructor.

← Prev Next →