What is the best way to detect Copy (Ctrl+C) event in an IWpfTextView?
- by Nick U
I am trying to detect a copy event in the text view and I have been researching the best way to do this. Is it to possibly hook into the StandardCommand Copy event somehow and detect it that way? Or is it possible to use the KeyProcessor(and simply detect Ctrl+C keypresses)?
My extension is currently implementing the IWpfTextViewCreationListener;…