RDP ActiveX Ctrl+Alt+Del
在我们的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 SendKeys 类 。
在此示例中,您可以发送 CTRL+ALT+END,如下所示:
Try to use the SendKeys class.
In this example, you could send CTRL+ALT+END as this: