如何创建我自己的快捷键 Ctrl Alt Del

发布于 2024-11-18 07:19:58 字数 168 浏览 4 评论 0原文

我需要创建自己的快捷键,就像当我们按 Ctrl + Alt + Delete 时,我们会得到任务管理器,同样我需要单击其他 2 个键来执行我的程序。 我应该怎么做?

我还需要知道我需要什么语言来编程?

我使用 Windows Vista 作为我的操作系统。

I need to create my own shortcut key, as in when we press Ctrl + Alt + Delete we get the task manager, likewise i need to click some other 2 keys to execute my program.
How should i do this ?

and also i need to know what language i need to program this?

I am using Windows Vista as my OS.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

甜嗑 2024-11-25 07:19:58

我认为他的意思是他希望能够在他的应用程序中创建快捷键。

如果您使用的是 Visual Studio,则可以通过菜单选项中的可视化设计器来完成此操作。

无论如何,我希望这篇文章能够对这种情况有所帮助:

http://support.microsoft.com/kb/ 839201

您标记了 vb,本文用 VB 和 C# 对其进行了解释。

祝你好运。

I think what he means is he wants to be able to create shortcut keys in his application.

If you're using Visual Studio, you can do this through the visual designer in menu options.

Anyways, I hope this article sheds some light onto the situation:

http://support.microsoft.com/kb/839201

You tagged vb, and this article explains it in VB as well as C#.

Good luck.

菊凝晚露 2024-11-25 07:19:58

我认为您想在 AutoHotKey 下使用 热键运行另一个程序。运行自动热键脚本后,您还可以添加键以在该程序中执行操作,设置其他键以启动其他程序等。请参阅 StackOverflow 的“autohotkey”标签下的条目以及从这些链接引用的其他帮助页面。

I think you want to use a hotkey under AutoHotKey to run another program. Once you have an autohotkey script running, you can also add keys to perform actions within that program, set up other keys to launch other programs, etc. See entries under StackOverflow's 'autohotkey' tag and other help pages referred to from those links.

九八野马 2024-11-25 07:19:58

创建一个为您执行 Ctrl-Alt-Del 操作的快捷方式
(在无法访问 OSK 的环境中非常有用)。创建以下内容的快捷方式:
C:\Windows\explorer.exe shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}

双击该快捷方式以访问 Ctrl- Alt-Del 屏幕。现在您可以忘记通过多个 RDP 的启动。

Create a shortcut that performs the Ctrl-Alt-Del action for you
(very useful in environments where OSK is not accessible). Create a shortcut to the following:
C:\Windows\explorer.exe shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}

Double-click that shortcut to access the Ctrl-Alt-Del screen. Now you can forget about the inception through multiple RDP.

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