Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用于用户输入的文本框。我想处理 keydown 事件,防止用户输入除字母以外的任何内容。我怎样才能做到这一点?
只需使用e.Key并检查它是否不是字母。
e.Key
if ((e.Key < Key.A) && (e.Key > Key.Z)) e.Handled = true;
如果您将 设置e.Handled为true,char则不会出现。
e.Handled
true
char