Prevent numbers from being pasted in textbox in .net windows forms

前端 未结 3 1536
鱼传尺愫
鱼传尺愫 2021-01-16 04:01

I have prevented numbers from being typed in text box using key down event. But when using Ctrl+V or pasting content through mouse, the numbers are being entered in the text

3条回答
  •  悲&欢浪女
    2021-01-16 04:40

    use the TextBox.TextChanged event. Then use the same code as you have in the KeyDown event. In fact, you no longer need the keydown event

提交回复
热议问题