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