How to detect Ctrl+V in Silverlight 4?
问题 What is the best way to detect Ctrl + V in Silverlight? I want to detect Ctrl + V , to get access to the Clipboard. 回答1: EDIT To capture the CTRL + V keypress globally in your silverlight application, is fraught with difficulty. Events start at the child elements and bubble down to the parent controls, so simply handling KeyDown on your root UIElement will not work. Any text input control will first get the event and smother it (by setting Handled to true on the event args.) I think that if