DevExpress - Unable to use ctrl-v in TextEdit control

I am trying to insert a value from a separate program into a control, TextEdit

and it does nothing when I use ctrl-v. However, I can use right click and paste and it is successful.

Is there one AllowShortcutKeys = true

that I am missing?

0


a source to share


2 answers


If you use the Ctrl + V keyboard shortcut for a menu item and the menu item's handler does nothing, it may precede the TextEditor functionality.



Also, if your form is an MDI parent, you can manually perform a copy / paste operation according to the instructions in this article http://msdn.microsoft.com/en-us/library/4s6dtf7z.aspx

+1


a source


Do you have any non-DX controls on the form where you can insert successfully? Perhaps you have an event on a form that has a pasty push. In particular, check the KeyPreview

form property and event KeyPress

.



0


a source







All Articles