开发者

How to apply accelerometer on a pivot page in WP7 to navigate the pages?

开发者 https://www.devze.com 2023-03-06 18:01 出处:网络
How to apply accelerometer on a pivot page in WP7 to navigate the pivot pages? Like when i tilt the phone to the right, i开发者_JAVA百科t will navigate the page to the right, and vice versa when i ti

How to apply accelerometer on a pivot page in WP7 to navigate the pivot pages?

Like when i tilt the phone to the right, i开发者_JAVA百科t will navigate the page to the right, and vice versa when i tilt it to the left.


The accelerometer readings can be detected by handling the AccelerometerReadingChanged event as described in MSDN:

http://msdn.microsoft.com/en-us/library/ff604984.aspx

You then need to apply some sort of threshold to the values that are returned in the event arguments. When a suitable threshold has been exceeded, increment or decrement in the pivot index, i.e. pivot.SelectedIndex++


While the approach ColinE suggested would undoubtedly work, it's somewhat messy. You'd have to calculate the threasholds yourself and you're getting a much lower level reading off the sensor than what you need.

I would suggest using the OrientationChanged event supported by the Page control.

protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
    switch (e.Orientation)
    {
        case PageOrientation.Portrait:
        case PageOrientation.PortraitDown:
        case PageOrientation.PortraitUp:
            contentPivot.SelectedIndex = 0;
            break;
        case PageOrientation.Landscape:
        case PageOrientation.LandscapeLeft:
        case PageOrientation.LandscapeRight:
            contentPivot.SelectedIndex = 1;
            break;
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号