Questions tagged [live-tile]

Live tiles are the entry point of Microsoft Metro apps, and can be updated with information to display to the user in an easily digestible format.

Live tiles represent Metro apps in the Start screen. They are the primary method through which the user will launch Metro apps, but they can also surface information and notifications directly through the tile itself, making it a dynamic representation of apps even when they are not running.

296 questions
1
vote
0 answers

Escape URL - XML - Live Tile - UWP

In C# I have System.Security.SecurityElement.Escape(url), but in my BackgroundTask I not access this. I try the: url= url.Replace("&", "&").Replace("<", "<").Replace(">", ">").Replace("\"", """).Replace("'", "'"); but this way…
1
vote
2 answers

Live Tile - UWP (Windows 10) - Url in source image not working

I try to put url on source of an image in XML of my LiveTyle Template, but certain urls do not work properly. I tested the App Notifications Visualizer by Microsoft and do not work, however put the link in the browser the image is returned. Any idea…
fipcurren88
  • 701
  • 5
  • 26
1
vote
1 answer

Create large SecondaryTile withn Universal Windows

I am trying to create a SecondaryTile programmatically in Windows Universal 10, as is mentioned in official doc we can create medium or wide sizes, having different constructors for that: Creates a SecondaryTile object as a medium…
Choletski
  • 7,074
  • 6
  • 43
  • 64
1
vote
1 answer

Live Tiles UWP Windows 10 - Not Update livetiles queue

I Have an problem, and I do not identify what are wrong. I use Notification Visualizer app for preview my Tiles. I have one XML template, and this work with somes images and for another not work, by example: My Template XML for tile:
1
vote
0 answers

UWP Tile notifications stop flipping

My windows 10 UWP app has a main "dashboard" that has several listview items. I'm wanting to show content from these items in the Primary Tile. The code that I have shows the content in the tile but the tile stops flipping after a few seconds and is…
Jason Bourne
  • 349
  • 1
  • 3
  • 14
1
vote
1 answer

Is there any way to customize the template of tile?

Now I implement live tile on my UWP application. I found some tile template on MSDN(https://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx?f=255&MSPPError=-2147217396#versions) but i want to change the style of template such as text…
KD Park
  • 13
  • 4
1
vote
2 answers

Windows Live Tile of a pinned website not updating

Currently I´m trying to implement a windows live tile for my website (http://traunviertler-traunwalchen.de). I created it on http://buildmypinnedsite.com/en and works so far. Now i tried to change the backgroundcolor, but my pinned website in my…
TrackerSB
  • 317
  • 6
  • 19
1
vote
0 answers

Tile Color not being set in Windows Phone 8.1

I have upgraded my app to WP 8.1. Unfortunately, when I create a Tile for my app, it's not using the specific color I've set in the Package.appxmanifest
Rudi
  • 926
  • 2
  • 19
  • 38
1
vote
1 answer

Why have Live tiles stopped working for my website?

I have had Live Tiles working for my website for quite some time, but it seems like after one of the latest Windows Updates they have stopped working on both Windows 8.1 as well as on Windows 10. Nothing has changed on the website since then. The…
Louis Somers
  • 2,560
  • 3
  • 27
  • 57
1
vote
1 answer

Windows phone tile custom color

I'm trying to set custom color to my app's tile. It shows custom color if I pin it start screen. But in the app list, it uses the phone theme color only. How to set the custom color there? On start screen: In apps list: Note: This is not a live…
Mangesh
  • 5,491
  • 5
  • 48
  • 71
1
vote
1 answer

Can I change the background color of the primary tile in WinRT?

Is it possible to change the background color of the primary tile of my WinRT app? I'd like to change it according to app status. I use this code for changing the text of the tile: XmlDocument contentSmall =…
Qerts
  • 935
  • 1
  • 15
  • 29
1
vote
1 answer

WP 8.1 Update Square AND Wide Tile - How?

How do I update both, the square and the wide tile per code at once? Or how can I determine, wich tile type is "loaded" on the start screen? I have this code: private void JamesBond() { var tileXML =…
1
vote
1 answer

Updating live tile in Windows Phone 8.1 Offline

I have managed to create a live tile for my app using the following code: var tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileSquare150x150PeekImageAndText01); var tileImage =…
1
vote
1 answer

Windows Phone 8.1 - Check if Primary/Application Tile is Pinned to Start Screen

Is there a way to check if the user has pinned the primary/application tile to their start screen?
kernanb
  • 566
  • 2
  • 6
  • 19
1
vote
1 answer

Background agent doesn't run when battery saver mode is on

I'm using a PeriodicTask that works flawlessly, but it doesn't run if the battery saver mode is on, even though I've allowed the app to run in the background in this state via the Battery Saver app. Any ideas what may be causing it from not running?…