How are live tiles made in Windows 8?

C#XamlWindows 8Live Tile

C# Problem Overview


I've searched the samples, the developer site, the getting started and the enhancing bla bla bla pages.

Even using some search queries on Google, I can't seem any information on live tiles in Windows 8.

How do I create a live tile in Windows 8? What languages can be used for that? C#? XAML?

C# Solutions


Solution 1 - C#

Finally figured it out, these live tiles are using tile notifications as noted by others.

Here is the minimal code necessary for updating an existing default tile with a template:

  1. You have to load in a template and adjust it, or produce your own XML code. See the tile schema...

     var tileXml = Notifications.TileUpdateManager.getTemplateContent(template); 
    
  2. You need to create a notification, which apparently is an update to a tile.

     var notification = new Notifications.TileNotification(tileXml); 
    
  3. You need to create an updater, which will provide you with methods to notify through your tile.

     var upd = Notifications.TileUpdateManager.createTileUpdaterForApplication();
    
  4. If you have all this, you can send an update to the client.

     upd.update(notification); 
    

Solution 2 - C#

http://msdn.microsoft.com/en-us/library/windows/apps/br211386

You can use either C# or VB + XAML or HTML/JS or C++.

That was the big announcement at the BUILD conference and the whole point of WinRT (God I hope they actually are serious about pushing WinRT for more than a year).

Otherwise it would be back to the Silverlight/.Net uprising that we saw after the first preview. . .

edit

You'll first need to learn the terminology of the MetroUI. You can also find more info under Windows Phone 7.

The Live Tiles can send tile notifications. That's how the socialite tile does the facebook feed. The OS will cycle through tile notifications that you've declared. This is all in the basic Tile sample and the advanced Tile sample.

Here is a link to all the samples from the BUILD event.

Start here for a step by step walkthrough of the platform. I would start there if the reference documentation is confusing.

Solution 3 - C#

The documents for notifications have been updated since the Consumer Preview release - a good starting point is the 'choosing a notification delivery method' document.

It has all of the relevant pointers to push, polling, scheduled and local notifications.

Solution 4 - C#

The available Metro documentation is here:

http://msdn.microsoft.com/en-us/library/windows/apps/

It's pretty patchy at the moment but there are samples, such as:

http://code.msdn.microsoft.com/windowsapps/Advanced-Tiles-Sample-1995ac42

Not all the samples are available in multiple languages, and that tile example is JS only, but based on what I've read elsewhere, it seems everything can be done with .NET languages, native (C++) or JS using the same APIs.

Solution 5 - C#

App tiles and badges sample is what you are looking for.

Solution 6 - C#

NotificationExtension library (part of MSDN sample in toast notification, application tile notification ) is very easy to use.

For tile/toast notification updates following approaches can be used

  1. Directly from the application
  2. From the background tasks
  3. From the WNS (push notification service)

Thorough samples are available in msdn code samples

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTamara WijsmanView Question on Stackoverflow
Solution 1 - C#Tamara WijsmanView Answer on Stackoverflow
Solution 2 - C#surfasbView Answer on Stackoverflow
Solution 3 - C#kmwoleyView Answer on Stackoverflow
Solution 4 - C#Daniel EarwickerView Answer on Stackoverflow
Solution 5 - C#HuseyinUsluView Answer on Stackoverflow
Solution 6 - C#TilakView Answer on Stackoverflow