vote up 1 vote down star

I am working on a silverlight app that you need to enter information into a textbox and then just hit enter. Well there is no onclick event, that I could find, so what I did was use the onkeypressup event and check if it was the enter key that was pressed if so do "blah".

It just feels like there is a better way to do this. So the question is, is there?

flag

67% accept rate

2 Answers

vote up 2 vote down check

I thinks that's the way to catch Key.Enter.

Also, you're code will be more readable if you use the KeyDown event instead of the KeyUp event.

If you only care about catching Key.Enter for a single control then your approach is correct.

You can also catch the Key.Enter for a group of related controls by using the KeyDown event of their container ("Event Bubbling").

link|flag
vote up 1 vote down

Do you really want it in the textbox? I would put a onkeyup handler on the container (e.g. Grid, Canvas) to press the button anywhere on the form.

link|flag

Your Answer

Get an OpenID
or

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