本文介绍了如何生成按键呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
{
    int ascii = Convert.ToInt16(e.KeyChar);

    if ((ascii >= 97 && ascii <= 122) || (ascii >= 65 && ascii <= 90) || (ascii == 8))
    {

        e.Handled = false;

    }

    else
    {

        e.Handled = true;

    }
}



我写了这段代码,但是如何自动生成这个事件?


I have written this code but how to generate automatically this event?

推荐答案


这篇关于如何生成按键呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 17:27