void OnAccelerometerReadingChanged(object sender, AccelerometerReadingEventArgs args)
{
Dispatcher.BeginInvoke(() =>
{
if (args.X > 1.0f)
{
if (contentPivot != null)
{
if (contentPivot.SelectedIndex >= contentPivot.Items.Count - 1) contentPivot.SelectedIndex = 0;
contentPivot.SelectedIndex++;
}
}
if (args.X < -1.0f)
{
if (contentPivot != null)
{
if (contentPivot.SelectedIndex >= contentPivot.Items.Count - 1) contentPivot.SelectedIndex = 0;
contentPivot.SelectedIndex--;
}
}
});
}
我收到錯誤消息「SelectedIndex」。它在contentPivot.SelectedIndex--;
行顯示。通過加速計錯誤的數據透視導航頁面
該代碼的目的是讓用戶在側向傾斜時導航到下一個數據透視頁面。
糾正我的代碼,如果我真的錯了。
遺憾的雜亂,我的意思無妨。 – lala
有問題下修改鏈接。 –
已經編輯.. – lala