如何将可执行文件添加到工具栏
这可能看起来像是发布的其他一些问题的重复。但我没有得到适当的答复。
我有一个名为“GenerateFileName.exe”的可执行文件,我想将其嵌入到 Visual Studio 工具栏。 我正在使用 VS 2010。
提前致谢
, 吉里什
This may seem like a duplicate of some other questions posted. But i dint get appropriate replies out there.
I have one executable of name 'GenerateFileName.exe' which i want to embed to Visual Studio Toolbar.
I am using VS 2010.
Thanks in advance
Regardas,
Girish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用外部工具功能。
首先,设置外部工具 - 完整说明可以在 MSDN 上找到,但是以下是快速步骤:
工具
菜单并选择外部工具
添加
并输入程序的详细信息(至少输入一个标题然后是exe的路径作为命令)其次,您需要为该外部工具添加一个工具栏图标。同样,MSDN 具有完整的详细信息,但基础知识是:
Customize
并切换到Commands
选项卡Toolbar
的选项,然后选择工具栏你想添加到(例如“标准”)添加命令...
工具
类别并找到外部工具XX。查找当前编号为 XX 的物品可能需要一些猜测和检查,但您应该能够找到它。You can use the External Tools feature for this.
First, setup the External Tool - full instructions can be found on MSDN but here are the quick steps:
Tools
menu and chooseExternal Tools
Add
and enter the details for your program (enter at least a title and then the path to the exe as the command)Second, you need to add a toolbar icon for that External Tool. Again, MSDN has the full details but the basics are:
Tools
menu and chooseCustomize
and switch to theCommands
tabToolbar
and then select the toolbar you want to add to (e.g. "Standard")Add Command...
Tools
category and find External Tool XX. Finding the item with the current number for XX might take some guess-and-check but you should be able to get it.