在C#中,您可以使用SendKeys
类来模拟键盘按键。以下是一个简单的示例,展示了如何使用SendKeys
类发送“Hello, World!”:
using System;
using System.Windows.Forms;
namespace SendKeysExample
{
class Program
{
[STAThread]
static void Main()
{
// 发送 "Hello, World!" 到活动窗口
SendKeys.Send("Hello, World!");
}
}
}
在这个示例中,我们首先导入了System
和System.Windows.Forms
命名空间。然后,我们创建了一个名为SendKeysExample
的命名空间和一个名为Program
的类。在Main
方法中,我们使用SendKeys.Send
方法发送字符串“Hello, World!”到活动窗口。
请注意,SendKeys
类主要用于模拟键盘按键,而不是与用户界面进行交互。如果您需要与用户界面进行交互,请考虑使用其他方法,如Control.Invoke
或Control.BeginInvoke
。