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.
嗨,我想知道 - 当我的条件为真时,我如何按下“F6”键。我正在研究 c#。我应该包括哪些头文件?当条件为真时按 F6 按钮的 c#code 的脚本是什么。谢谢
SendKeys可用于向活动应用程序发送击键:
SendKeys.Send("{F6}");
但是请注意,如果没有其他方法可以远程控制另一个应用程序,则只能将其用作最后的手段。直接接口(例如 COM 自动化)通常更可靠、更健壮。