Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I want to access the clipboard with MVVM how can I do it?

share|improve this question

1 Answer

up vote 0 down vote accepted

SL 4 now supports text clipboard operations. This is transparent in OOB mode and requires user confirmation if not in OOB mode.

You can use Clipboard.GetText() in your view models and commands to retrieve the text content available in the clipboard.

share|improve this answer
I am actually asking in a MVVM app, where should clipboard logic go. Is accessing the Clipboard from my ViewModel be a good idea? – Jiew Meng Oct 14 '10 at 11:05
Do you mean 'as opposed to doing it in the XAML code behind'? If so, I believe the answer is no. To me it seems legitimate the view model is aware of the clipboard. – vc 74 Oct 14 '10 at 11:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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