In the textbox you can not paste, the following code works fine:
private void Textbox_PreviewExecuted(object sender, ExecutedRoutedEventArgs e)
{
if (e.Command == ApplicationCommands.Paste)
{
e.Handled = true;
}
}
The problem is showing in the contextmenu when clicking the right mouse:
How to disable Ctrl + V?