We need to disable the pasting option in TextBox of XAML page. Because we are working on question and answers type for that we need to disable the pasting option.
I would recommend against disabling copy/paste. Disabling those options in text fields serves little more than annoying the user.
However, if you are to prevent Ctrl+C / Ctrl+V combinations, you could use
Windows.ApplicationModel.DataTransfer.Clipboard.Clear();
EDIT: Make sure you disable the right click on your textbox as well.