Tagged Questions

17
votes
4answers
14k views

How to capture CTRL+TAB, CTRL+SHIFT+TAB in WPF?

Does anyone have some sample code that will trap the CTRL+TAB and CTRL+SHIFT+TAB for a WPF application. We have created KeyDown events and also tried adding command bindings with input gestures but ...
2
votes
2answers
180 views

How do I hook in to a double-press of the Ctrl key?

What I'm looking for is functionality similar to Google desktop. When you hit Ctrl twice rapidly, a little search box pops up. I've tried using a fairly heavy keyboard hook class that I found ...
1
vote
3answers
2k views

Clicking HyperLinks in a RichTextBox without holding down CTRL - WPF

I have a WPF RichTextBox with isReadOnly set to True. I would like users to be able to click on HyperLinks contained within the RTB, without them having to hold down CTRL. The Click event on the ...
0
votes
0answers
54 views

Override cursor behavior while drag&drop operation in WPF

Problem: when I drag the element in WPF application and press the ctrl key while dragging then the mouse cursor changes from "move" to "suppress" icon. Is there a way to override this behavior so that ...