在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
。