RDP ActiveX Ctrl+Alt+Del

发布于 2024-07-20 21:43:03 字数 226 浏览 3 评论 0原文

在我们的 C# 应用程序中,我们使用 RDP 查看器作为 ActiveX 控件。 该应用程序有自己的工具栏,其中包含 Ctrl+Alt+Del 按钮。 ActiveX 控件上似乎没有方法来执行此功能。 我知道您可以在键盘上按 Ctrl+Alt+End 这很好,但是如何通过单击工具栏按钮来做到这一点?

In our C# application we use the RDP viewer as an ActiveX control. The application has its own toolbar with a Ctrl+Alt+Del button. There does not seem to be a method on the ActiveX control to perform this function. I know you can hit Ctrl+Alt+End on your keyboard which is fine but how do I do that from the toolbar button click?

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

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

发布评论

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

评论(1

各空 2024-07-27 21:43:03

尝试使用 SendKeys 类

在此示例中,您可以发送 CTRL+ALT+END,如下所示:

 SendKeys.Send("(^%{END})");

Try to use the SendKeys class.

In this example, you could send CTRL+ALT+END as this:

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