Creating and Controlling Environment Windows
Visual Studio add-ins are deprecated in Visual Studio 2013. You should upgrade your add-ins to VSPackage extensions. For more information about upgrading, see FAQ: Converting Add-ins to VSPackage Extensions.
The Visual Studio integrated development environment (IDE) is composed of numerous tool windows. A tool window is a window created by Visual Studio, or one that can be manipulated by Visual Studio automation. The Visual Studio automation model enables you to manipulate its windows and in many cases, their contents. For example, the Toolbox window is represented by the ToolBox object, as well as the ToolBoxTabs and ToolBoxItems collections. You can use its members to add and remove tabs and Toolbox items. You can also create your own tool windows to suit your custom content.
While some tool windows, such as Solution Explorer and the Class View tool window, do not have explicit automation features, you can still manipulate the windows themselves. Solution Explorer is a tool window in the Visual Studio IDE that displays a physical, file-based depiction of your solution and its projects and their project items. Like any other tool window in Visual Studio, you can control its physical parameters, such as size, location, and whether it is docked or free-floating. Class View is a tool window that displays the symbols defined, referenced, or called in the application you are developing. For information, see How to: Change Window Characteristics.
To learn more about |
See |
---|---|
Changing the physical characteristics of a tool window, such as its height, width, and so forth. |
|
Manipulating source code and text in the Code Editor. |
|
Automating search and replace operations in the Code Editor. |
|
Manipulating Solution Explorer and its contents. |
|
Using the Visual Studio Code Model to discover code. |
|
Manipulating the Output window and its contents. |
|
Changing the settings in the Options dialog box on the Tools menu. |
|
Manipulating the Toolbox and its contents. |
|
Manipulating the Task List and its contents. |
|
Manipulating the Command window and its contents. |
|
Controlling tree views in tool windows by using the UIHierarchy object. |
|
Creating and manipulating tool windows. |
See Also
Tasks
Walkthrough: Creating a Wizard
Concepts
Controlling Projects and Solutions