Command Design

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

When you add a command to a VSPackage, you must specify where it is to appear, when it is available, and how it is to be handled.

Defining Commands

To define new commands, include a Visual Studio Command Table (.vsct) file in your VSPackage project. If you have created a VSPackage by using the Visual Studio Package Template, the project includes one of these files. For more information, see Visual Studio Command Table (.Vsct) Files.

Visual Studio merges all the .vsct files it finds so that it can display the commands. Because these files are distinct from the VSPackage binary, Visual Studio does not have to load the package to find the commands. For more information, see How VSPackages Add User Interface Elements.

Visual Studio uses the ProvideMenuResourceAttribute registration attribute to define menu resources and commands. For more information, see Implementation.

Commands can be changed at run time in a number of different ways. They can be displayed or hidden, enabled or disabled. They can display different text or icons, or contain different values. A great deal of customization may be performed before Visual Studio loads your VSPackage. For more information, see How VSPackages Add User Interface Elements.

Command Handlers

When you create a command, you must provide an event handler to execute the command. If the user selects the command, it must be appropriately routed. Routing a command means sending it to the correct VSPackage to enable or disable it, hide or display it, and execute it if the user chooses to do so. For more information, see Routing Algorithm.

The Visual Studio Command Environment

Visual Studio can host any number of VSPackages, and each can contribute its own command set. The environment displays only the commands that are appropriate to the current task. For more information, see Availability and Selection Context Objects.

A VSPackage that defines new commands, menus, toolbars, or shortcut menus provides its command information to the Visual Studio at installation time through registry entries that reference resources in native or managed assemblies. Each resource then references a binary data resource (.cto) file, which is produced when you compile a Visual Studio Command Table (.vsct) file. This enables Visual Studio to provide merged command sets, menus, and toolbars without having to load every installed VSPackage.

Command Organization

The environment positions commands by group, priority, and menu.

  • Groups are logical collections of related commands, for example, the Cut, Copy, and Paste command group. Groups are the commands that appear on menus.

  • Priority determines the order in which individual commands in a group appear on the menu.

  • Menus act as containers for groups.

    The environment predefines some commands, groups, and menus. For more information, see Default Command, Group, and Toolbar Placement.

    A command can be assigned to a primary group. The primary group controls the position of the command in the main menu structure and in the Customize dialog box. A command can appear in multiple groups; for example, a command can be on the main menu, on a shortcut menu, and on a toolbar. For more information, see How VSPackages Add User Interface Elements.

Command Routing

The process of invoking and routing commands for VSPackages differs from the process of calling methods on object instances.

The environment routes commands sequentially from the innermost (local) command context, which is based on current selection, to the outermost (global) context. The first context that is able to execute the command is the one that handles it. For more information, see Routing Algorithm.

In most instances, the environment handles commands by using the IOleCommandTarget interface. Because the command routing scheme enables many different objects to handle commands, IOleCommandTarget can be implemented by any number of objects; these include Microsoft ActiveX controls, window view implementations, document objects, project hierarchies, and VSPackage objects themselves (for global commands). In some specialized cases, for example, routing commands in a hierarchy, the IVsHierarchy interface must be implemented.

Title Description
Implementation Describes how to implement commands in a VSPackage.
Availability Describes how Visual Studio context determines which commands are available.
Routing Algorithm Describes how Visual Studio command routing architecture enables commands to be handled by different VSPackages.
Placement Guidelines Suggests how to position commands in the Visual Studio environment.
How VSPackages Add User Interface Elements Describes how VSPackages can best utilize the Visual Studio command architecture.
Default Command, Group, and Toolbar Placement Describes how VSPackages can best use the commands that are included in Visual Studio.
Managing VSPackages Describes how Visual Studio loads VSPackages.
Visual Studio Command Table (.Vsct) Files Provides information about XML-based .vsct files, which are used to describe the layout and appearance of commands in VSPackages.