0

Windows 8 アプリ - メトロ アプリ - こんにちは、Web からタイル イメージを更新したいのですが、うまくいきません。私はこのリンクを使用 します。小さなカスタマイズを行っただけですが、Web からの画像が機能しません。const string src1 = "ms-appx:///Assets/clock24x24.png";を使用すると、文字列 src1 に画像があります。画像は機能しますが、Webからは機能しません。誰にもアイデアはありますか?

public static void CreateSchedule()
    {


        var tileUpdater = TileUpdateManager.CreateTileUpdaterForApplication();
        var plannedUpdated = tileUpdater.GetScheduledTileNotifications();
        DateTime now = DateTime.Now;
        DateTime planTill = now.AddHours(4);

        const string src1 = "http://cdn.thenextweb.com/wp-content/blogs.dir/1/files/2012/02/Screen-Shot-2012-02-21-at-4.48.56-PM.png";

        DateTime updateTime = new DateTime(now.Year, now.Month, now.Day, now.Hour, now.Minute, 0).AddMinutes(1);
        if (plannedUpdated.Count > 0)
            updateTime = plannedUpdated.Select(x => x.DeliveryTime.DateTime).Union(new [] { updateTime }).Max();
        string xml = "<tile>"
                         + "<visual>"
                         + "<binding template='TileWideImageAndText01'>"
                         + "<text id='1'>This tile notification uses web images</text>"
                         + "<image id='1' src='" + src1 + "' alt='Web image'/>"
                         + "</binding>"
                         + "<binding template='TileSquareImage'>"
                         + "<image id='1' src='" + src1 + "' alt='Web image'/>"
                         + "</binding>"
                         + "</visual>"
                         + "</tile>";
        var tileXmlNow = string.Format(xml);
        XmlDocument documentNow = new XmlDocument();
        documentNow.LoadXml(tileXmlNow);

        tileUpdater.Update(new TileNotification(documentNow) { ExpirationTime = now.AddMinutes(1) });

        for (var startPlanning = updateTime; startPlanning < planTill; startPlanning = startPlanning.AddMinutes(1))
        {
            Debug.WriteLine(startPlanning);
            Debug.WriteLine(planTill);

            try
            {
                var tileXml = string.Format(xml);
                XmlDocument document = new XmlDocument();
                document.LoadXml(tileXml);

                ScheduledTileNotification scheduledNotification = new ScheduledTileNotification(document, new DateTimeOffset(startPlanning)) { ExpirationTime = startPlanning.AddMinutes(1) };
                tileUpdater.AddToSchedule(scheduledNotification);

            }
            catch (Exception e)
            {
            }
        }
    }
4

1 に答える 1

0

パッケージの AppxManifest ファイルでインターネット機能を有効にしましたか?

于 2013-07-29T15:01:30.623 に答える