In the following you can see the code I use to call a page if a shake event happens. However, the page pops up but in the same moment the app freezes and I can\'t do any further
The readings are likely happening too quickly and you are causing multiple Navigations to occur. Try unsubscribing from the event:
void accelerometer_ReadingChanged(object sender, AccelerometerReadingEventArgs e)
{
//double X, Y, Z;
if (e.X > 1.5)
{
accelerometer.ReadingChanged -= accelerometer_ReadingChanged;
Dispatcher.BeginInvoke( () => {
NavigationService.Navigate(new Uri("/Bars/DetailBar.xaml", UriKind.Relative));
});
}
}