Combos Element
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
Groups Combo Element elements.
Syntax
<Combos>
<Combo>... </Combo>
<Combo>... </Combo>
</Combos>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
---|---|
Condition | Optional. See Conditional Attributes. |
Child Elements
Element | Description |
---|---|
Combos Element | Groups Combo elements. |
Combo Element | Defines the commands that appear in a combo box. |
Parent Elements
Element | Description |
---|---|
Commands Element | Represents the collection of commands on the VSPackage toolbar. |
Example
<Combos>
<Combo guid="guidWidgetPackage" id="cmdidInsertOptions"
defaultWidth="100" idCommandList="cmdidGetInsertOptionsList">
<CommandFlag>DynamicVisibility</CommandFlag>
<Strings>
<ButtonText>Select Insert Options</ButtonText>
</Strings>
</Combo>
<Combo guid="guidWidgetPackage" id="cmdidInsertOptions"
priority="0x0500" type="DropDownCombo" defaultWidth="100"
idCommandList="cmdidGetInsertOptionsList">
<Parent guid="cmdSetGuidWidgetCommands" id="groupIDFileEdit">
<CommandFlag>DynamicVisibility</CommandFlag>
<Strings>
<ButtonText>Select Insert Options</ButtonText>
</Strings>
</Combo>
</Combos>
See Also
How VSPackages Add User Interface Elements
Commands, Menus, and Toolbars