Working with Advanced Live Tiles in Windows 8: Listing 1

CustomSecondaryTile.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.StartScreen;
using Windows.Foundation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media;
using Windows.UI.Notifications;
using Windows.Data.Xml.Dom;

namespace VSMAdvancedTilesDemo.Common
{
    public class CustomSecondaryTile
    {
        SecondaryTile _tile;

        public CustomSecondaryTile(string tileId)
        {
            _tile = new SecondaryTile(tileId);
        }

        public CustomSecondaryTile(string tileId, string message)
        {
            Uri squareTileUri = new Uri("ms-appx:///Assets/Check.png");
            Uri wideTileUri = new Uri("ms-appx:///Assets/CheckWide.png");
            _tile = new SecondaryTile(tileId, message,
                                            message, String.Empty,
                                            TileOptions.ShowNameOnWideLogo | TileOptions.ShowNameOnLogo,
                                            squareTileUri,
                                            wideTileUri);
        }

        public async Task RequestCreation(FrameworkElement positionElement)
        {
            return await _tile.RequestCreateForSelectionAsync(GetCenteredElementRect(positionElement));
        }

        public void PushBageNotification(string value)
        {
            XmlDocument badgeDoc = BadgeUpdateManager.GetTemplateContent(BadgeTemplateType.BadgeNumber);
            XmlElement element = (XmlElement)badgeDoc.SelectSingleNode("/badge");
            element.SetAttribute("value", value);
            BadgeNotification badgeNotification = new BadgeNotification(badgeDoc);
            BadgeUpdateManager.CreateBadgeUpdaterForSecondaryTile(_tile.TileId).Update(badgeNotification);
        }

        public void PushTileNotification(string message, TileTemplateType squareTeamplte, TileTemplateType wideTeamplte)
        {
            XmlDocument wideDoc = TileUpdateManager.GetTemplateContent(wideTeamplte);
            XmlNodeList wideElements = wideDoc.GetElementsByTagName("text");
            wideElements.Item(0).AppendChild(wideDoc.CreateTextNode(message));
            XmlDocument squareDoc = TileUpdateManager.GetTemplateContent(squareTeamplte);
            XmlNodeList squareElements = squareDoc.GetElementsByTagName("text");
            squareElements.Item(0).AppendChild(squareDoc.CreateTextNode(message));
            IXmlNode subNode = wideDoc.ImportNode(squareDoc.GetElementsByTagName("binding").Item(0), true);
            wideDoc.GetElementsByTagName("visual").Item(0).AppendChild(subNode);
            TileNotification tileNotification = new TileNotification(wideDoc);
            TileUpdateManager.CreateTileUpdaterForSecondaryTile(_tile.TileId).Update(tileNotification);
        }

        public async Task RequestDelete(FrameworkElement parentElement)
        {
            return await _tile.RequestDeleteForSelectionAsync(GetCenteredElementRect(parentElement));
        }

        private Rect GetCenteredElementRect(FrameworkElement e)
        {
            GeneralTransform transform = e.TransformToVisual(null);
            Point transformPoint = transform.TransformPoint(new Point());
            return new Rect(transformPoint, new Size(e.ActualWidth, e.ActualHeight));
        }
    }
}

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube