Tagged Questions
7
votes
7answers
7k views
KeyDown : recognizing multiple keys
How can I determine in KeyDown that Ctrl + Up was pressed.
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up)
{
...
2
votes
3answers
624 views
jquery: keydown, keyup, small snippet, why isn't this working?
Why isn't this working?
var holdingctrl = false;
$(document).keydown("q",function(e) {
if(holdingctrl == true)
alert("Holding CTRL and pressing Q: Success.");
e.preventDefault();
});
...
0
votes
0answers
243 views
catching ctrl-S in silverlight 4
I'm trying to capture ctrl-s in my application. I used the technique given in this video http://www.silverlight.net/learn/videos/all/keyboard-control/#topofcomments and added code like
private void ...