Visual Studio 语音命令

发布于 2024-07-30 07:40:30 字数 86 浏览 7 评论 0原文

你知道钢铁侠在电影中是如何在他的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

抚笙 2024-08-06 07:40:30

Visual Studio 语音命令

我想很快就会被称为 Bob!

Visual Studio Voice Commands

Soon to be called Bob I think!!

萌辣 2024-08-06 07:40:30

我家里有一个插件,效果很好,但有点挑剔。 它并不进行实际的编程,而是更多地帮助消除快捷方式。 本质上,您可以使用快捷命令运行的任何功能都可以使用此插件运行。要获取可用功能的列表,请转至 这篇 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.

病女 2024-08-06 07:40:30

我使用 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.

信仰 2024-08-06 07:40:30

使用 Vocola 可以非常轻松地为 Visual Studio 或任何其他应用程序创建语音命令。 下面是一个将口语短语连接到击键序列的示例:

Save File = {Ctrl+s};

当您说“保存文件”时,它会发送击键“Control-s”,然后您的文件将被保存。

Visual Studio 的一些有用命令(注意“#”是注释字符):

Find in Files = {Ctrl+F};
Switch Tab = {Ctrl+Tab}{Enter};
Close Solution = {Alt+f}t;
Touch Go = {LeftButton}{F12};                    # "Go To Definition", e.g. of method name mouse is pointing to
Touch References = {RightButton}a;               # "Find All References", e.g. of method name mouse is pointing to
Rename All = {Alt+Shift+F10} Wait(100) {Enter};  # Renames all references, e.g. to a method you just renamed

稍微考虑一下您需要什么命令并进行一些使用它们的练习,编程就会变得更快。

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:

Save File = {Ctrl+s};

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):

Find in Files = {Ctrl+F};
Switch Tab = {Ctrl+Tab}{Enter};
Close Solution = {Alt+f}t;
Touch Go = {LeftButton}{F12};                    # "Go To Definition", e.g. of method name mouse is pointing to
Touch References = {RightButton}a;               # "Find All References", e.g. of method name mouse is pointing to
Rename All = {Alt+Shift+F10} Wait(100) {Enter};  # Renames all references, e.g. to a method you just renamed

With a little thought about what commands you need and a little practice using them, programming gets a lot faster.

森林迷了鹿 2024-08-06 07:40:30

查看 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...

悲歌长辞 2024-08-06 07:40:30

您可以尝试 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.

梦断已成空 2024-08-06 07:40:30

如果您有 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文