blue piranha
blue piranha

Reputation: 3874

Finding empty label in Windows form

I am new to Windows Form application and trying to build a small application.

I had dragged and dropped a label on the main form.

Then I deleted its text property to empty string basically hiding the label.

Now I would like to move this label to some other location on the form but unable to do so because I cannot find it.

I checked the designer file and its there.

But I cannot find it in the form so that I can grab it and move to a different location.

Please help.

Thanks

Upvotes: 14

Views: 8597

Answers (2)

Mikev
Mikev

Reputation: 2082

That happens to me several times, and a few weeks ago I found a way to get the empty label like this:

On the tab "Properties" just click on the arrow to show all controls and click on the label you want, this will automatically select the label on your form..

enter image description here

Upvotes: 2

Usman Farooq
Usman Farooq

Reputation: 1098

Use Document Outline. Look at the following images.

Upvotes: 18

Related Questions