0
votes
2answers
38 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
46 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
2answers
54 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
165 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?
…
2
votes
2answers
174 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 …
0
votes
1answer
68 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 …
1
vote
3answers
106 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
3answers
321 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) {
…
2
votes
5answers
412 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
2answers
223 views
Get textbox value on keydown + Multilingual support
Hi,
I want get the value of the text including the character on the keydown event.
$(".searchfield").keydown(function(e) {
if (e.which >= 32 || e.which < 127) {
var c = …
1
vote
1answer
181 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
-3
votes
2answers
190 views
how to make something when user press enter on the keyboard [closed]
can anyone help, please? this is in c# 3
1
vote
4answers
571 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
2k 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 …
3
votes
5answers
441 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)
{
…
