How to Create a Drop Down Menu in Wix - velo

In previous versions of Wix there was a way to create a down menu, however, I can not figure out how to add a drop down menu in Wix as of today.
How do you add a drop down menu on a Wix web page?

Related

Why does Solution Explorer context menu 'Add Class' default to Xamarin Forms?

I'm running VS2017 Community v15.5.1, and when I right-click on the Solution Explorer and select Add->Class..., I get an Add Item dialogue that defaults to Xamarin Forms and a Xamarin page[see image]. Before the upgrade of VS, when did the same, a simpler dialogue opened just asking for a class file name.
This is damned annoying and unproductive, as each time I want to add a class, I have to deselect Xamarin.Forms on the dialogue and select ASP.NET Core before I get prompted for a class name.
Is there any way I can fix this?
The dialogue I get now:

Two extensions and one menu item

I want to use two VS extensions. Each extension creates its own menu item in VS2012 main menu. I would like to merge these menu items to one menu item. Is it possible to change vsix files to obtain this behavior or I should change the source code?
You can modify Visual Studio menu using Tools - Customize - Commands tab:

Is it possible to create a work item from code editor?

We are working with TFS. Are there any plugins for Visual Studio 2012/2013 allow to create Work Items from code editor?
It's quiet annoying to get through several menus to create a work item.
You can customize the menu bar shortcuts for this so can have quick access directly from the IDE:
Right click the menu bar area in Visual Studio and check Work Item Tracking
Customize the menus and toolbars to add shortcuts to your favorite work item types.

How to clear User's Programs Menu folder?

I am trying to create an setup project in visual studio 2010 that clears an existing applications program menu. After running the installer that I am creating, the installer duplicated already existing short cuts in the programs menu. I would like to be able to remove all the existing short cuts from a specific programs menu folder and just have the new short cuts appear.
Right click on Deployment project, select properties and set the "RemovePreviousVersion" property to true..

How can i add an icon to a submenu in a VS2010 add-in?

I can add an icon to a menu item by adding an <icon> to the <button> element in the in the *.vsct file of my Visual Studio Package.
Unfortunately the <icon>issn't available available in a <menu> element.
How can i add an icon to a submenu?
It is possible to do this from code (preferibly C#)?
Maybe via injecting something into the COM / OLE layer?
TortoiseSVN has a icon in the explorer popup menu, have you ever seen a VS plugin that does this?
Unfortunately this isn't possible using VS menus (not with vsct, C#, etc), and they're not very extensible in this regard. However, depending on what you're trying to do, (e.g. if you're looking to do this in a context menu within a tool window rather than the VS menu bar), you may be able to use WPF context menus which should give you the control you need.
I am not sure TortoiseSVN explorer context menu and what you are trying to do in Visual Studio extension are same. As I understand, VSCT Menu element cannot have Icon. Only Button element supports icons. You can check this blog post from DiveDeeper for more information.

Resources