How to have access to the Label again in Visual Studio

2

I put a Label on the form, edited its name to be empty, renamed and so on, and I can no longer select it in the form for manipulation.

It works inside the application bringing the ID of the register, I need to manipulate because it is misaligned with the content of the form but I can no longer access it.

I'm using Visual Studio 2015.

    
asked by anonymous 08.02.2018 / 13:16

2 answers

2

It has a window called document outline , it will be all form controls and clicking on it will select it in the form designer.

  

I will put a picture as soon as my computer cooperates and I can open Visual Studio -_-

    
08.02.2018 / 13:29
3

As mentioned by @Linq in the comments, you can use the window Document Outline and access any control in Form

Or,inthePropertieswindowyouhaveacombo,withtheFormcontrolstoo:

    
08.02.2018 / 13:30