private void slider1_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
try
{
int count = 10;
if (this.slider1.Value == count)
{
this.NavigationService.Navigate(new Uri("/sViews/HomePage.xaml", UriKind.Relative));
}
}
catch(Exception ex)
{
}
}