是的,可以在C#控制臺應用程序中使用KeyPress事件處理鍵盤輸入。您可以使用Console.ReadKey()方法來讀取單個按鍵的信息,并在按下鍵時觸發事件處理邏輯。以下是一個簡單的示例:
using System;
class Program
{
static void Main()
{
Console.WriteLine("Press any key to continue...");
while (true)
{
ConsoleKeyInfo keyInfo = Console.ReadKey();
if (keyInfo.Key == ConsoleKey.Escape)
{
Console.WriteLine("Escape key pressed. Exiting program...");
break;
}
Console.WriteLine("Key pressed: " + keyInfo.KeyChar);
}
}
}
在上面的示例中,我們使用Console.ReadKey()方法讀取按鍵信息,并檢查按下的鍵是否是Escape鍵。如果是,則退出程序;否則,打印按下的鍵字符。您可以根據需要擴展此示例以處理其他按鍵。