我對C#和編程一般都很陌生。基本上我的問題是我試圖做一個簡單的代碼,它使用鍵輸入,但是當我運行(調試)程序時,它根本不能識別任何鍵輸入。 KeyPreview設置爲true,但它似乎還沒有做任何事情。你能告訴我我做錯了什麼嗎?謝謝。如何讓Visual C#工作室識別鍵輸入
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public List<string> list = new List<string>();
public Form1()
{
InitializeComponent();
KeyPreview = true;
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F3)
{
list.Add("OMG!");
}
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(list[0]);
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
「Form1_KeyDown」是否正確鏈接到您的表單事件?你是用手還是從設計師那裏創造它的?您甚至不需要KeyPreview來捕獲鍵盤輸入。 – LightStriker
謝謝你的回答。您能否解釋一下「與您的表單事件正確關聯」是什麼意思?是的,我剛寫入表單代碼。謝謝 – user1761590
@ user1761590你也可以使用'protected override void OnKeyDown(KeyEventArgs e) { base.OnKeyDown(e); }' –