本文介绍了C#Keydown或键码不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码

 私有  void  Form1_KeyDown(对象发​​件人,KeyEventArgs e)
     {
如果(例如,KeyCode == Keys.F3)
         {
             标签intervillabel =  Label();
             intervillabel.Text = numericUpDown1.Value.ToString();
             intervillabel.Location = 点(BeatDetector.Location.X, 10 );
             intervillabel.Visible =  true ;

             panel1.Controls.Add(intervillabel);
         }
     } 



错误是没有任何反应,我尝试了每个键.

解决方案



this is my code

private void Form1_KeyDown(object sender, KeyEventArgs e)
     {
if (e.KeyCode == Keys.F3)
         {
             Label intervillabel = new Label();
             intervillabel.Text = numericUpDown1.Value.ToString();
             intervillabel.Location = new Point(BeatDetector.Location.X, 10);
             intervillabel.Visible = true;

             panel1.Controls.Add(intervillabel);
         }
     }



the error is, nothing happens,l ive tried every key

解决方案




这篇关于C#Keydown或键码不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 06:26