0
votes
2answers
18 views
WPF KeyDown and Keyup events
Hi when I do in one of my user controls in a WPF application,
this.KeyUp += new System.Windows.Input.KeyEventHandler(MultipleControlViewer_KeyUp);
or
this.KeyDown += new …
0
votes
3answers
38 views
KeyCode and keyboard layout and language
I need to include the asterisk as an allowable entry on a text box.
How can I test for this key under the KeyDown event regardless of the keyboard layout and language?
Ignoring the numeric keypad, …
1
vote
3answers
125 views
jQuery - keydown() on div not working in Firefox
I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am I doing wrong?
…
1
vote
2answers
46 views
Focusable Panel in WPF
I need to make a Panel focusable in WPF, so that it captures keyboard events just as any other focusable control:
The user clicks inside the Panel to give it focus
any KeyDown or KeyUp event is …
2
votes
2answers
147 views
Up, Down, Left and Right arrow are not catch by KeyDown
I am building an application where all the key input must be handled by the windows itself.
I set tabstop to false for each control witch could grab the focus except a panel (but I don't know if it …
1
vote
4answers
545 views
Detecting “value” of input text field after a keydown event in the text field?
So my site has an input box, which has a onkeydown event that merely alerts the value of the input box.
Unfortunately the value of the input does not include the changes due to the key being …
2
votes
5answers
383 views
Multiple Modifier Keys in C#
I am betting this is a really simple question to answer, I just can't get such a simple thing to work.
I use a keydown event to detect keys pressed and have several common key combination's to do …
0
votes
3answers
298 views
jQuery : binding keydown, same behavior except for one
Hello,
I have some input (text type). I'd like to the same behavior for all except for one.
I tried this :
$(document).ready(function() {
$("input[type=text]").bind('keydown', function(e) {
…
1
vote
1answer
112 views
How to handle text edition from the KeyDown event?
I would like to edit a graphical text (not a TextBox control) through the KeyDown event.
I need to update my text string according to the KeyEventArgs (key value and modifier).
I using a french …
0
votes
2answers
1k views
C# trying to capture the KeyDown event on a form
Hello!
I am creating a small game, the game is printed onto a panel on a windows form. Now i want to capture the keydown event to see if its the arrow keys that has been pressed, the problem however …
1
vote
3answers
95 views
Convert received keys in PreviewKeyDown to a string
I am using PreviewKeyDown event on a window to receive all the keys from a barcode scanner. The KeyEventArgs is an enumeration and does not given me the actual string. I dont want to use TextInput as …
0
votes
2answers
336 views
How do i capture the Print Screen key?
Hello everyone.
I my program i need to capture when the Print Screen key is pressed down but it is not working (however it works with other keys).
I guess this has something to do with windows …
1
vote
1answer
174 views
Keydown event for entire application VB .Net
I want to make it so that no matter which control has focus, it will do my event. So that I dont have to write a keydown event for all 137 of my objects. Is this possible?
Thanks
1
vote
3answers
883 views
C# - Tetris clone - Can’t get block to respond properly to arrow key combinations
I'm working on programming a Tetris game in Visual C# 2005. This is the most extensive program I have designed yet.
I create a shape class and a block class to control the location, movement, and …
0
votes
1answer
63 views
PreviewTextInput is not fired when the focus is on checkbox / Handling the PreviewTextInput in Main window and not allowing child control steal the characters
I have the following code. The window has a textbox and a checkbox. If I have focus on the anything other than checkbox and type something like 123-456 then for each character PreviewKeyDown and …
