Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Viewing a list of Controls associated with a class in Visual Studio IDE

Tags:

I'm using the form designer in VS.

I placed a label on my form, and then deleted it's text. Currently, I can not locate the label.

How do I see a list of controls associated with a given class?

like image 345
FellowMD Avatar asked Jun 30 '10 17:06

FellowMD


People also ask

How do I show controls in Visual Studio?

The Toolbox window displays controls that you can add to Visual Studio projects. To open Toolbox, choose View > Toolbox from the menu bar, or press Ctrl+Alt+X. You can drag and drop different controls onto the surface of the designer you are using, and resize and position the controls.

How do I view all methods in a class in Visual Studio?

It's called Navigation bar and contains three drop downs: first drop down contains project, second type and third members (methods). You can use the shortcut Ctrl + F2 (move focus to the project drop down) and press Tab twice (move focus to the third drop down) to focus it, down arrow will expand the list.

What is task list in Visual Studio?

Applies to: Visual Studio Visual Studio for Mac Visual Studio Code. Use Task List to track code comments that use tokens such as TODO and HACK , or custom tokens, and to manage shortcuts that take you directly to a predefined location in code. Click on the item in the list to go to its location in the source code.

WHAT IS controls in Visual Studio?

VB.NET Controls are the pillars that help in creating a GUI Based Applications in VB.Net quickly and easily. These are objects that you can drag to the Form using the Control toolbox in the IDE. Each VB.NET Control has some properties, events, and methods that can be used to tweak and customize the form to our liking.


1 Answers

View --> Other Windows --> Document Outline

like image 80
csthopper Avatar answered Sep 17 '22 13:09

csthopper