This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.UWP/Views/GetStarted4.xaml.cs
2022-11-03 16:41:13 -04:00

45 lines
1.4 KiB
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using Windows.UI.Xaml.Input;
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
namespace MyDriving.UWP.Views
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class GetStarted4
{
private double endX;
private double startX;
public GetStarted4()
{
InitializeComponent();
Dots.SelectCircle(4);
ManipulationMode = ManipulationModes.TranslateX;
ManipulationStarted += Manipulation_Started;
ManipulationCompleted += Manipulation_Completed;
}
void Manipulation_Started(object sender, ManipulationStartedRoutedEventArgs e)
{
startX = e.Position.X;
e.Handled = true;
}
void Manipulation_Completed(object sender, ManipulationCompletedRoutedEventArgs e)
{
endX = e.Position.X;
if (endX < startX) //forward
Frame.Navigate(typeof (GetStarted5));
else if (endX > startX) //back
Frame.Navigate(typeof (GetStarted3));
e.Handled = true;
}
}
}