Visual Studio 语音命令
你知道钢铁侠在电影中是如何在他的 IDE 中使用语音命令的吗? 有没有 Visual Studio 插件可以做这样的事情? 如果没有,你如何自己制作它们?
you know how Iron Man was using voice commands for his IDE in the movie? Are there any Visual Studio plugins that can do that kind of thing? If not, how do you go about making them yourself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
Visual Studio 语音命令
我想很快就会被称为 Bob!
Visual Studio Voice Commands
Soon to be called Bob I think!!
我家里有一个插件,效果很好,但有点挑剔。 它并不进行实际的编程,而是更多地帮助消除快捷方式。 本质上,您可以使用快捷命令运行的任何功能都可以使用此插件运行。要获取可用功能的列表,请转至 这篇 MSDN 文章。
它是ThirdHand at codeplex.com,据我所知,它只适用于 VS 2008,因为它使用.Net 3.5。 请务必阅读我在讨论板上发布的帖子,了解如何在出现任何问题时重置它。
我已经有一段时间没看过这部电影了,所以我希望这与你所说的相似。
There's a plug in I use at home that works well but is slightly finicky. It doesn't do the actual programming, but more of an aid to eliminate the shortcuts. Essentially, any function that you can run using shortcut commands you can run using this plug in. To get a list of the available functions go to this MSDN article.
It's ThirdHand at codeplex.com and as far as I can tell it only works on VS 2008 since it uses .Net 3.5. Make sure to read my post on in the discussion board on how to reset it if there are any problems.
It's been awhile since I've seen in the movie, so I hope this is similar to what you're talking about.
我使用 Dragon 在 Visual Studio 和 SQL Server Management Studio 中进行语音编码自然而然地专业。 我已经这样做很多年了,并尝试为 Visual Studio 创建自己的加载项。 他们收集我的类和变量名称,并帮助我构建自定义编程词汇表。 不幸的是,说“修复错误”只会简单地指定该文本,但我可以很好地编写代码并控制 IDE。
I code by voice in Visual Studio and SQL Server Management Studio using Dragon NaturallySpeaking Professional. I've been doing this for years, and played around with creating my own add-ins for Visual Studio. They harvest my class and variable names and help me build my custom programming vocabularies. Unfortunately, saying "fix bug" would simply dictate that text, but I can write code and control the IDE pretty well.
使用 Vocola 可以非常轻松地为 Visual Studio 或任何其他应用程序创建语音命令。 下面是一个将口语短语连接到击键序列的示例:
当您说“保存文件”时,它会发送击键“Control-s”,然后您的文件将被保存。
Visual Studio 的一些有用命令(注意“#”是注释字符):
稍微考虑一下您需要什么命令并进行一些使用它们的练习,编程就会变得更快。
With Vocola it's pretty easy to create voice commands for Visual Studio or any other application. Here's an example which connects a spoken phrase to a keystroke sequence:
When you say "Save File" it sends the keystroke "Control-s", and your file is saved.
A few useful commands for Visual Studio (note "#" is the comment character):
With a little thought about what commands you need and a little practice using them, programming gets a lot faster.
查看 Microsoft Speech SDK 以及 Visual Studio Integration。 两者都有很多教程(只需谷歌),在 VS2008 中甚至还有开箱即用的模板化集成项目...
Take a look at Microsoft Speech SDK, as well as Visual Studio Integration. There are a BUNCH of tutorials (just google) on both, and in VS2008 there's even templated Integration projects out of the box...
您可以尝试 Sempu VS 扩展。 它还允许您设置自己的命令。
http://visualstudiogallery.msdn.microsoft.com/f2964c90-68e2-4ddd -861a-bd66e5cd4434
截至目前,尚未与 VS 2013(预览版)兼容,接受的答案是。
You can try the Sempu VS extension. It also allows you to set your own commands.
http://visualstudiogallery.msdn.microsoft.com/f2964c90-68e2-4ddd-861a-bd66e5cd4434
Not yet compatible with VS 2013 (preview) as of this date, accepted answer is.
如果您有 Dragon NaturallySpeaking 专业版,您可能可以使用以下一些脚本,这些脚本是我使用 Visual Basic Advanced Scripting for Dragon NaturallySpeaking 创建的。
https://github.com/Mark-Phillipson/DragonScripts/wiki/ Visual-Studio-命令
If you have Dragon NaturallySpeaking Professional Version you could probably make use of some of the following scripts which I have created using Visual Basic Advanced Scripting for Dragon NaturallySpeaking.
https://github.com/Mark-Phillipson/DragonScripts/wiki/Visual-Studio-Commands