vote up 2 vote down star
2

I am new to C# and am doing some work in an existing application. I have a DirectX viewport that has components in it that I want to be able to position using arrow keys.

Currently I am overriding ProcessCmdKey and catching arrow input and send an OnKeyPress event. This works, but I want to be able to use modifiers(ALT + CTRL + SHIFT). As soon as I am holding a modifier and press an arrow no events are triggered that I am listening to.

Does anyone have any ideas or suggestions on where I should go with this?

flag

2 Answers

vote up 4 vote down check

Within your overridden ProcessCmdKey how are you determining which key has been pressed?

The value of keyData (the second parameter) will change dependant on the key pressed and any modifier keys, so, for example, pressing the left arrow will return code 37, shift-left will return 65573, ctrl-left 131109 and alt-left 262181.

You can extract the modifiers and the key pressed by ANDing with appropriate enum values:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
    bool shiftPressed = (keyData & Keys.Shift) != 0;
    Keys unmodifiedKey = (keyData & Keys.KeyCode);

    // rest of code goes here
}
link|flag
vote up 1 vote down

I'm not sure if this is any good because I'm no good at c#, but here goes: http://geekswithblogs.net/clingermangw/articles/84666.aspx. Its from an XNA tutorial so it may be good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.