Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
667 views
in Technique[技术] by (71.8m points)

c# - Alphanumeric Textbox - Validate/Sanitize clipboard text before paste

On my Textbox only accepts Alphanumeric characters and a underscore using the Keypressed event but I am having problems when I right click on the textbox and pasted special characters and accepts it

enter image description here

Is there a way to validate the string from there before clicking paste?

Any answers will help thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You may

1- Disable shortcuts for the textbox that would disable Ctrl-C, Ctrl-V, and the second line(will assign a empty context menu, with no items and will override the original context menu) and no context menu will appear (as it has no items):

textBox1.ShortcutsEnabled = false;
textBox1.ContextMenu = new ContextMenu();

2-If you don't want to disable paste option, you may use TextChanged event of the textbox and validate the pasted text there.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...