Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created June 23, 2014 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtuts/0d3cd7fd28eb703ba581 to your computer and use it in GitHub Desktop.
Save wtuts/0d3cd7fd28eb703ba581 to your computer and use it in GitHub Desktop.
Hub tile
public void addhubtile()
{
//Creating a new instance of hub tile
HubTile hub = new HubTile();
hub.Title = "Hubtile";
hub.Message = "Hello everyone";
hub.Notification = "Notify";
hub.DisplayNotification = true;
//adding the hub tile into the grid named contentpannel
ContentPanel.Children.Add(hub);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment