Parts of VS IDE
Parts of VS IDE
Parts of VS IDE
The first thing you'll see after you open Visual Studio is the start window. The start window is designed to help
you "get to code" faster. It has options to clone or check out code, open an existing project or solution, create
a new project, or simply open a folder that has some code files.
Create a New Project
The Create a new project window opens and shows several project templates. A template contains the basic
files and settings required for a given project type.
Here, you can search, filter, and pick a project template. The Create a new project window also shows a list of
your recently used project templates.
Menu Bar
The menu bar appears at the top of the Visual Studio window. The Project menu contains commands related
to the project you're working in. On the Tools menu, you can customize how Visual Studio behaves by
selecting Options, or add features to your installation by selecting Get Tools and Features.
Standard Toolbar
The standard toolbar contains buttons that execute frequently used commands. It provides quick access to
commands that would otherwise be executed from a menu. To know what a button is used for, you can
position the mouse on top of it. A tool tip will come up and display for a few seconds.
A Tooltip is a small rectangular box that pops up when you hover the mouse pointer over a button on the
toolbar or Toolbox for a few seconds. It contains a short description of the button’s purpose. You can use a
ToolTip whenever you cannot remember a particular button’s function.
Toolbox
The Toolbox is a window for selecting controls to use in an application’s user
interface. This section shows you all the things you can add to the forms in your program – buttons, labels
(text), checkboxes, radio buttons, etc. You can select what you want to add to the form and drag it to the place
where you want it located on your form. You might hear this called “drag-and-drop” programming
It is divided into sections such as All Windows Forms and Common Controls. Toolbox typically appears on the
left side of Visual Studio environment
Workspace
This is the space where you actually work on a part of your program. You select what you want to work on,
from the Solution Explorer, and work on it here. You can have several files open on your workspace at one time
(see the tabs at the top of the workspace), but you’ll only have one “on top”, that you’re actually working on at
the moment.
Form Designer Window
The Form Designer allows you to design your application's user interface visually by dragging controls onto a
design-time representation of your application. Once the controls are on the form, you can visually position the
controls, set their properties through the Properties window, and create event handlers for the events.
Error List
The Error List shows you errors, warning, and messages about the current state of your code. If there are errors
(like a missing brace or semicolon) in your file or anywhere in your project, they're listed here.
Output Window
The Output window shows you output messages from building your project and from your source control
provider.
References:
https://docs.microsoft.com/en-us/visualstudio/get-started/visual-studio-ide?view=vs-2022
https://docs.microsoft.com/en-us/visualstudio/ide/quickstart-ide-orientation?view=vs-2022
https://scottlilly.com/learn-c-by-building-a-simple-rpg-index/lesson-00-3-the-parts-of-visual-studio/
http://www.functionx.com/vb/Lesson01.htm#:~:text=By%20default%2C%20when%20you%20start,of%20all
%20the%20available%20toolbars.
https://www.malavida.com/en/soft/visual-studio-2012/#gref