I'm currently running into a problem: I have a TreeView and I can modify the text on the node by double-clicking it (but leaving some time in between) like in normal Windows when you want to rename a file.
And now when I am in this name modification section where the text is highlighted and everything (like this) I can't use Ctrl+C to copy the text. I can only use the Copy function of the context menu when you press right click on it which takes considerably more time than Ctrl+C.
Are the shortcuts in this scenario disabled and if so can I enable them?
Also I have already implemented a functionality for Ctrl+C/Ctrl+V when copying/pasting an entire node, so that's not my question. This problem just has to do with copying the text.
I want to do the solution shown here but I don't quite understand it since I don't know for example what "Drop the new control from the top of the toolbox onto your form." means (I'm also not able to open the Designer)
I noticed that when pressing Ctrl+C in the edit mode it uses the normal Ctrl+C handler for entire nodes but "fails" there at an if condition which checks if the correct thing (=node) was selected.
I simply added an else to this which then copies the selected value to the clipboard and it works perfectly fine! I'll probably just have to do the same thing with Ctrl+V in edit mode.
Gosh, I've searched so long for this solution, thanks to Jochen Arndt who provided me help in this comment section!