vote up 1 vote down star

How can I disable the copy and paste functionality in a Silverlight textblock?

flag
Copy and paste don't work in a Silverlight TextBlock. Do you mean TextBox? – Erik Mork Jun 22 at 16:46

1 Answer

vote up 3 vote down

I will assume that you mean TextBox rather than TextBlock as the latter doesn't provide cut and paste.

I think the easiest way to do this will be to derive from TextBox and override the key handling to prevent clipboard operation shortcuts. You would need to extend this basic solution if you wanted I18N support to allow for different shortcuts on different systems, but for the standard Ctrl+V, Ctrl+C (or Apple+C and Apple+V on Macs), this should work. You may also want to consider Ctrl+Ins as an alternative to Ctrl+V (I'm not certain Silverlight supports this, but it might).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.