3

私は一般的にC#とプログラミングにまったく慣れていません。基本的に私の問題は、キー入力を使用する単純なコードを作成しようとしているのですが、プログラムを実行 (デバッグ) すると、キー入力がまったく認識されないことです。KeyPreview は true に設定されていますが、まだ何もしていないようです。私が間違っていることを教えてください。ありがとうございました。

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)
    {

    }
}
}
4

1 に答える 1