我正試圖在我的地鐵應用程序活動圖塊中禁用徽標,以便我的圖塊通知中的最後一行文字顯示出來。 Windows 8 documentation 表示有一種方法可以在Package.appxmanifest
文件中禁用此徽標。但是,它沒有指定如何。我已在.appxmanifest
中設置了ShortName
,並且我還將「顯示名稱」字段設置爲「所有徽標」;但是,默認徽標仍會出現在實時拼貼畫的左下角,並遮蓋我的拼貼圖通知中文本的最後一行。有任何想法嗎?如何在Windows 8 metro app live tile中禁用徽標?
4
A
回答
4
一個活生生的瓷磚可以有一個圖像,文本或無品牌。默認值爲應用程序徽標,當您通過指定品牌「無」來創建實時磁貼更新時,您可以覆蓋此設置,如下所示:
var templateContent = TileUpdateManager.GetTemplateContent(TileTemplateType.TileWideImage);
var imageElement = (XmlElement) templateContent.GetElementsByTagName("image").Item(0);
imageElement.SetAttribute("src", string.Concat(imagePath, "wide_tile.png"));
var bindingElement = (XmlElement) templateContent.GetElementsByTagName("binding").Item(0);
bindingElement.SetAttribute("branding", "none");
var tile = new TileNotification(templateContent);
TileUpdateManager.CreateTileUpdaterForApplication().Update(tile);
0
您不能同時擁有最後一行文字和短名稱。它是徽標/短名或最後一行文字。
相關問題
- 1. Windows 8 Store App Live Tile Image位置
- 2. Windows 8 Live Tile中的粗體文本
- 3. Windows 8 Live Tile每分鐘更新
- 4. windows 8 metro app facebook整合
- 5. Personnalised Autocomplete Textbox Windows 8 Metro App
- 6. Mediaelement in Windows 8 Metro App
- 7. 如何在Windows Phone 8中禁用Secondary Tile的寬瓦片?
- 8. Metro Live Tile Like Twitter Feed與MetroJS
- 9. Windows 8 Live Tile - 刪除文本和小圖標?
- 10. 如何在WP8中更新我的應用程序的Live Tile徽章?
- 11. Windows Phone 7 Live Tile Push Notifcations?
- 12. 使用Windows 8 Metro應用
- 13. 如何在Windows 8 Metro App中設計對話視圖?
- 14. 在Windows 8 App(metro app)上使用facebook c#sdk從Facebook註銷?
- 15. Windows 8 Metro App凍結簡歷?
- 16. WP7 Live tile像People Hub或Me app
- 17. Google Places API wnd Windows 8 Metro Style App
- 18. Live Tile Notification Not Showing
- 19. 如何在Windows 8 Metro應用
- 20. 如何獲取Windows 8 Metro App中的設備ID
- 21. 如何從c#windows 8 Metro App中的HostName獲取IPAddress?
- 22. 從Windows Metro App啓動exe
- 23. Windows 8 Live Tile更新無法正常工作
- 24. Windows Phone 8 - 小循環模板Live Tile(159x159)
- 25. 在Windows 8 Metro應用
- 26. 禁用放大和縮小ScrollViewer中的在Windows 8 Metro應用
- 27. 在Windows 8 Metro中禁用應用程序睡眠
- 28. 使用Windows Live SDK的Windows 8 metro應用程序單點登錄
- 29. 你可以建立一個啓動網站而不是Metro應用程序的Windows 8 Live Tile嗎?
- 30. 如何在Windows 8中進行網絡調用和更新UI C#metro app