.net - How to register mouse hover event over Visual Studio menu item? -
i'm writing vsix plugin. i've created icon on visual studio standard toolbar. custom command attached it:
var mcs = getservice(typeof(imenucommandservice)) olemenucommandservice; var commandid = new commandid(guidlist.guidsthcmdset, pkgcmdidlist.cmdidsth); command = new olemenucommand(dosomething, commandid); mcs.addcommand(command); if click on icon, dosomething function invokes. need run other function, while cursor of mouse on toolbar icon. how ?
i say, not possible...
Comments
Post a Comment