0
votes
2answers
33 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
42 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
1answer
113 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 …
1
vote
2answers
52 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 …
1
vote
3answers
147 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?
…
0
votes
2answers
350 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 …
2
votes
2answers
161 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
3answers
905 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 …
1
vote
4answers
563 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 …
0
votes
2answers
565 views
keydown in flex Flex
I have an small application in flex in which I have defined 2 canvases. On one of them I added controls and the other one is used to draw something and no controls are added:
<mx:Canvas x="0" …
1
vote
1answer
380 views
Why does contentEditable element reject the Enter key?
Hi,
I'm using an application that embeds IE control to show content. I change that content to contain a <div contentEditable="True">Hello World</div> element. This works well and I can …
1
vote
3answers
103 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
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 …
0
votes
2answers
1k views
Adding event handler to an iframe using JQuery
I want to assign a keydown event handler to an iframe. Something similar to the pure JS:
document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true);
I tried:
…
0
votes
3answers
314 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) {
…
