live-tile

New Live tiles don't work in Windows Phone Silverlight 8.1 apps?

瘦欲@ 提交于 2020-02-02 03:08:13
问题 So when I was watching this video from BUILD I thought it's gonna be easy... But I can't seem to get the tile of my WP Silverlight 8.1 app to change by doing the following. const string xml = "<tile>" + "<visual>" + "<binding template='TileSquareText01'>" + "<text id='1'>testing 123</text>" + "</binding> " + "</visual>" + "</tile>"; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xml); var tileNotification = new TileNotification(xmlDoc); TileUpdateManager.CreateTileUpdaterForApplication()

New Live tiles don't work in Windows Phone Silverlight 8.1 apps?

好久不见. 提交于 2020-02-02 03:08:07
问题 So when I was watching this video from BUILD I thought it's gonna be easy... But I can't seem to get the tile of my WP Silverlight 8.1 app to change by doing the following. const string xml = "<tile>" + "<visual>" + "<binding template='TileSquareText01'>" + "<text id='1'>testing 123</text>" + "</binding> " + "</visual>" + "</tile>"; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xml); var tileNotification = new TileNotification(xmlDoc); TileUpdateManager.CreateTileUpdaterForApplication()

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

本秂侑毒 提交于 2020-01-11 07:15:08
问题 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 = TileUpdateManager.GetTemplateContent(TileTemplateType.TileSquare150x150Text02); contentSmall.GetElementsByTagName(textElementName)[1].InnerText = "---"; TileNotification notifSmall = new TileNotification(contentSmall); TileUpdateManager.CreateTileUpdaterForApplication().Update(notifSmall)

Font size and family for a tile's title

百般思念 提交于 2019-12-31 01:01:10
问题 Simple question but I havent found the answer. What is the font name and size that is used for the tile's title (like the title "Internet Explorer" on that tile)? Does anyone know this? 回答1: I believe FontFamily is PhoneFontFamilySemiBold and FontSize is PhoneFontSizeNormal . The code snippet below is from the toolkit's HubTile control where you can pretty much find all the information about the style of the tile. :) <TextBlock x:Name="BackTitleBlock" Grid.Row="1" VerticalAlignment="Bottom"

Add Hubtile control to xaml programatically with device screen width Windows Phone

女生的网名这么多〃 提交于 2019-12-25 16:58:12
问题 I have started working With the Hubtile. I'm trying to add a hubtile to a list, with the Hubtile filling the device screen width. I am adding it to a ContentPanel, however i think this is wrong - i need to show the tiles as a list, inside the app with wide tile(max screen width) property, how can i achieve this? Have a look at my code so far: //Project 1 HubTile project1 = new HubTile(); project1.GroupTag = "projects"; project1.Title = "RLE Kunnskap til andre prøve"; project1.Message =

Add Hubtile control to xaml programatically with device screen width Windows Phone

こ雲淡風輕ζ 提交于 2019-12-25 16:58:00
问题 I have started working With the Hubtile. I'm trying to add a hubtile to a list, with the Hubtile filling the device screen width. I am adding it to a ContentPanel, however i think this is wrong - i need to show the tiles as a list, inside the app with wide tile(max screen width) property, how can i achieve this? Have a look at my code so far: //Project 1 HubTile project1 = new HubTile(); project1.GroupTag = "projects"; project1.Title = "RLE Kunnskap til andre prøve"; project1.Message =

Somebody know how to use live tiles with Phonegap and Windows Phone 7? [closed]

社会主义新天地 提交于 2019-12-24 08:19:23
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . I'd like to know how to load some live tiles from a JSON from an URL but I have never used that option, could somebody give an idea how to do it? 回答1: Live Tiles are not supported by the PhoneGap 'core', in other

How to load image from isolated storage for secondary tile

走远了吗. 提交于 2019-12-24 07:53:19
问题 I am attempting to populate a secondary tile background with an image saved from the PhotoChooserTask, but for some reason I cannot accomplish this. I have referenced a lot of sites but I have not found the proper implementation. All I do is call PhotoChooserTask, and then on the completed event I save the resulting image to isolated storage to be loaded later. This has worked with a HubTile in my application, but for some reason I cannot append the image to a secondary tile. So far what I

In windows 8 metro style app, how to update live tile while app is not running?

孤街浪徒 提交于 2019-12-20 09:45:45
问题 In windows 8 metro style app, how to update live tile while app is not running ? And the live tile start to run when OS system begin to start. http://blogs.msdn.com/b/windowsappdev/archive/2012/04/16/creating-a-great-tile-experience-part-1.aspx "3.Use polling notifications from the cloud to update the tile while the app is not running" But I cannot find any example code. I also try MSDN's PushNotificationSample, But I don't know how to set the "Server URI"? Does anyone have similar

How do I remove the App name from my flipping live tile on Windows Phone?

最后都变了- 提交于 2019-12-20 05:02:32
问题 I'm using this template TileWide310x150PeekImage03 from the documentation here. On the example image, the name of the App is not displayed on the image, but on my App the name of the app remains. This ruins the UI of my tile because the App name is displayed within the image of my flipping live tile. How do I remove it? 回答1: Add branding="none" to the binding element in the template XML. http://msdn.microsoft.com/en-us/library/windows/apps/br212854.aspx 来源: https://stackoverflow.com/questions