Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この C# アプリケーションでは、RDP ビューアを ActiveX コントロールとして使用します。Ctrlアプリケーションには、 + Alt+Delボタンを備えた独自のツールバーがあります。ActiveX コントロールには、この機能を実行するメソッドがないようです。Ctrlキーボードで+ Alt+を押すことができることはわかっていますがEnd、ツールバーのボタンをクリックしてそれを行うにはどうすればよいですか?
SendKeys クラスを使用してみてください。
CTRLこの例では、次のように+ ALT+を送信できますEND。
SendKeys.Send("(^%{END})");