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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…