For Windows Phone. How can I tell when the "search" button is clicked when I set InputScope to search on a TextBox? Is there an event?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

When the InputScope is set to "Search", the "search" button is just a restyled "enter" button. So, assuming:

<TextBox InputScope="Search" KeyDown="SearchBox_KeyDown" />

the "search " button being pressed (on the SIP) can be detected with:

private void SearchBox_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        // Do search...
    }
}
link|improve this answer
feedback

In addition to what Matt has (correctly) answered, if you handle e.PlatformKeyCode == 0x0A (as shown below) you can also respond to the Enter key being pressed on the host keyboard when running in the emulator without the SIP.

if ((Key.Enter == e.Key) || (e.PlatformKeyCode == 0x0A))
{
    // Do search...
}
link|improve this answer
+1 Thanks for the additional in formation – Jamey McElveen Jan 12 '11 at 13:20
feedback

Do you mean the hardware search button? It's not exposed. Similar question

link|improve this answer
1  
The question refers to the search button on the InputScope, not the hardware button – Matt Lacey Jan 12 '11 at 10:31
feedback

Your Answer

 
or
required, but never shown

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