Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
540 views
in Technique[技术] by (71.8m points)

silverlight - Determining the Enter key is pressed in a TextBox

Consider a XAML TextBox in Win Phone 7.

  <TextBox x:Name="UserNumber"   />

The goal here is that when the user presses the Enter button on the on-screen keyboard, that would kick off some logic to refresh the content on the screen.

I'd like to have an event raised specifically for Enter. Is this possible?

  • Is the event specific to the TextBox, or is it a system keyboard event?
  • Does it require a check for the Enter on each keypress? i.e. some analog to ASCII 13?
  • What's the best way to code this requirement?

alt text

question from:https://stackoverflow.com/questions/3295057/determining-the-enter-key-is-pressed-in-a-textbox

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A straight forward approach for this in a textbox is

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        Debug.WriteLine("Enter");
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...