I wrote below code for capturing "@" pressed or not. And working perfectly fine on Emulator and on Samsung Focus. But when deployed to Nokia Lumia 800 and pressed "@" it wont resulted in Key.D2 and below code not working.
if (e.Key == System.Windows.Input.Key.D2)
{
myBox.Text = "@";
}
Please guide me how can i capture "@" and "#" key pressed on my textbox. Thanks in Advance

Reply With Quote

