Open In App

How to set the Location of the ListBox in C#?

In Windows Forms, ListBox control is used to show multiple elements in a list, from which a user can select one or more elements and the elements are generally displayed in multiple columns. In ListBox, you are allowed to set the location of the ListBox using Location Property of the ListBox. This property contains the coordinates of the upper-left corner of the ListBox control relative to the upper-left corner of its form. You can set this property in two different ways:

1. Design-Time: It is the easiest way to set the location of the ListBox as shown in the following steps:



2. RunTime: It is a little bit trickier than the above method. In this method, you can set the location of the ListBox control programmatically with the help of given syntax:



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

Here, the Point indicates the upper-left corner of the ListBox control relative to the upper-left corner of its form. The following steps show how to set the location of the ListBox dynamically:


Article Tags :
C#