メインのフォームから、キー設定をするフォームを表示し、キー設定ができるようにしたいです。
キー設定のフォームでボタンを押してから選択したいキーを押すとそのキーに設定されるというシステムにしたいため、キー設定のフォームのイベントハンドラにPreviewKeyDownイベントを設定したのですが、実行されません。
試しにメインフォームでPreviewKeyDownを実行してみましたが、きちんと作動しました。
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows.Forms; 10 11namespace Experient8 12{ 13 public partial class KeySettingForm : System.Windows.Forms.Form 14 { 15 public Keys RotateKey { get; private set; } 16 public Keys ChangeShapeKey { get; private set; } 17 private int keyActivating; 18 public KeySettingForm() 19 { 20 InitializeComponent(); 21 22 RotateKey = new Keys(); 23 RotateKey = Keys.R; 24 ChangeShapeKey = new Keys(); 25 ChangeShapeKey = Keys.E; 26 keyActivating = 0; 27 } 28 29 private void KeySetting_Load(object sender, EventArgs e) 30 { 31 // nothing 32 } 33 34 private void RotateKeyBClicked(object sender, EventArgs e) 35 { 36 keyActivating = 1; 37 RotateKeyB.Text = "?"; 38 RotateKeyB.ForeColor = Color.Red; 39 } 40 41 private void KeyDowned(object sender, PreviewKeyDownEventArgs e) 42 { 43 this.BackColor = Color.Red; // ここで必ずBackColorがRedになるはずなんですが、なりません。 44 switch(keyActivating) 45 { 46 case 0: break; // is not actvating 47 case 1: 48 RotateKey = e.KeyCode; 49 RotateKeyB.Text = e.KeyCode.ToString(); 50 RotateKeyB.ForeColor = Color.Black; 51 break; 52 case 2: 53 ChangeShapeKey = e.KeyCode; 54 ChangeShapeKeyB.Text = e.KeyCode.ToString(); 55 ChangeShapeKeyB.ForeColor = Color.Black; 56 break; 57 } 58 keyActivating = 0; 59 } 60 61 private void ChangeShapeKeyBClicked(object sender, EventArgs e) 62 { 63 keyActivating = 2; 64 ChangeShapeKeyB.Text = "?"; 65 ChangeShapeKeyB.ForeColor = Color.Red; 66 } 67 } 68} 69
プロジェクトにWindows Formを追加する際に、なぜか空のフォームではなかったので、そのクラスの継承先をSystem.Windows.Forms.Formにしてしまいました。それが原因かもしれません。
回答2件
あなたの回答
tips
プレビュー