在C#中,您可以使用SendKeys
类来模拟键盘按键操作。以下是一些示例代码,说明如何使用SendKeys
类发送不同的键:
using System;
using System.Windows.Forms;
namespace SendKeysExample
{
class Program
{
[STAThread]
static void Main()
{
// 模拟按下"A"键
SendKeys.Send("A");
// 模拟按下组合键:Ctrl + C
SendKeys.Send("+C");
// 模拟按下组合键:Alt + F4
SendKeys.Send("+F4");
// 模拟按下组合键:Ctrl + Alt + Delete
SendKeys.Send("+Alt+Delete");
}
}
}
请注意,SendKeys
类主要用于模拟键盘操作,而不是实际发送按键到其他应用程序。如果您需要与其他应用程序进行交互,可能需要考虑使用其他方法,例如自动化测试工具(如AutoIt)或Windows API。