Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created June 24, 2014 19:58
Show Gist options
  • Save wtuts/976a664e129047fc764a to your computer and use it in GitHub Desktop.
Save wtuts/976a664e129047fc764a to your computer and use it in GitHub Desktop.
Hub tiles -Part 2
//Event handler for freezebutton click
private void freezetilesbuttonclick(object sender, RoutedEventArgs e)
{
//This line will freeze the animation of Hub tiles
HubTileService.FreezeGroup("Tiles");
}
//Event handler for unfreezebutton click
private void Unfreezetilesbuttonclick(object sender, RoutedEventArgs e)
{
//This line will unfreeze the animation of Hub tiles
HubTileService.UnfreezeGroup("Tiles");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment