Click here to Skip to main content
15,880,651 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: How to use printer in the universal windows 10 app in Visual Studio c# Pin
Afzaal Ahmad Zeeshan30-Oct-15 4:33
professionalAfzaal Ahmad Zeeshan30-Oct-15 4:33 
GeneralIs using images for buttons in Mobile app development is a common thing? Pin
Member 1189244119-Oct-15 20:55
Member 1189244119-Oct-15 20:55 
GeneralRe: Is using images for buttons in Mobile app development is a common thing? Pin
Richard MacCutchan20-Oct-15 2:59
mveRichard MacCutchan20-Oct-15 2:59 
GeneralRe: Is using images for buttons in Mobile app development is a common thing? Pin
Member 1189244120-Oct-15 19:11
Member 1189244120-Oct-15 19:11 
GeneralRe: Is using images for buttons in Mobile app development is a common thing? Pin
Richard MacCutchan20-Oct-15 21:28
mveRichard MacCutchan20-Oct-15 21:28 
GeneralRe: Is using images for buttons in Mobile app development is a common thing? Pin
Richard MacCutchan20-Oct-15 21:29
mveRichard MacCutchan20-Oct-15 21:29 
GeneralRe: Is using images for buttons in Mobile app development is a common thing? Pin
Member 138173168-May-18 22:37
Member 138173168-May-18 22:37 
QuestionWindows 10 mobile live tile not updating in emulator? Pin
windowsphonewinit12348-Oct-15 21:51
windowsphonewinit12348-Oct-15 21:51 
Hi
I am facing problem in updating wide live tile while switching from Square Tile to Wide Tile in windows universal app development. It is working fine in windows surface and Desktop but coming to phone it is not updating Wide tile could any one please help me?


By default Wide Tile is working fine for us but when we change it from Square Tile to wide tile it is not working in emulator.
Here is our total Sample code:

TileUpdateManager.CreateTileUpdaterForApplication().Clear();
TileUpdateManager.CreateTileUpdaterForApplication().EnableNotificationQueue(true);
var _tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileSquare150x150PeekImageAndText03);
var tileImage = _tileXml.GetElementsByTagName("image")[0] as Windows.Data.Xml.Dom.XmlElement;
tileImage.SetAttribute("src", "ms-appx:///Assets/Logo.png");
var tileText = _tileXml.GetElementsByTagName("text");
(tileText[0] as Windows.Data.Xml.Dom.XmlElement).InnerText = "xyz";
(tileText[1] as Windows.Data.Xml.Dom.XmlElement).InnerText = "ABC";
(tileText[2] as Windows.Data.Xml.Dom.XmlElement).InnerText = "EFGH";
(tileText[3] as Windows.Data.Xml.Dom.XmlElement).InnerText = "IJKL";
var tileNotification = new TileNotification(_tileXml);
TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification);

Windows.Data.Xml.Dom.XmlDocument tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileWide310x150PeekImageAndText02);
var tileText1 = tileXml.GetElementsByTagName("text");
(tileText1[0] as Windows.Data.Xml.Dom.XmlElement).InnerText ="xyz";
(tileText1[1] as Windows.Data.Xml.Dom.XmlElement).InnerText = "ABC";
(tileText1[2] as Windows.Data.Xml.Dom.XmlElement).InnerText = "EFGH";
(tileText1[3] as Windows.Data.Xml.Dom.XmlElement).InnerText ="IJKL";
(tileText1[4] as Windows.Data.Xml.Dom.XmlElement).InnerText = "Sample App";
var tileImage = tileXml.GetElementsByTagName("image")[0] as Windows.Data.Xml.Dom.XmlElement;
tileImage1.SetAttribute("src", "ms-appx:///Assets/Wide310x150Logo.Scale-100.png");//Assets\Wide310x150Logo.png
TileUpdateManager.CreateTileUpdaterForApplication().Update(new TileNotification(tileXml));




Thanks,
Madhu.
QuestionDevelop windows 10 app using windows 7 and visual studio 2013 Pin
Anjani Rajdev5-Oct-15 0:11
Anjani Rajdev5-Oct-15 0:11 
AnswerRe: Develop windows 10 app using windows 7 and visual studio 2013 Pin
Richard MacCutchan5-Oct-15 0:50
mveRichard MacCutchan5-Oct-15 0:50 
AnswerRe: Develop windows 10 app using windows 7 and visual studio 2013 Pin
Pavan_Pareta7-Oct-15 22:35
Pavan_Pareta7-Oct-15 22:35 
AnswerRe: Develop windows 10 app using windows 7 and visual studio 2013 Pin
Peter_in_27807-Oct-15 22:56
professionalPeter_in_27807-Oct-15 22:56 
GeneralRe: Develop windows 10 app using windows 7 and visual studio 2013 Pin
Afzaal Ahmad Zeeshan7-Oct-15 23:03
professionalAfzaal Ahmad Zeeshan7-Oct-15 23:03 
QuestionC++ mobile SDK, tips and how tos? Pin
VooDooChicken2-Oct-15 6:18
VooDooChicken2-Oct-15 6:18 
AnswerRe: C++ mobile SDK, tips and how tos? Pin
Richard MacCutchan2-Oct-15 7:26
mveRichard MacCutchan2-Oct-15 7:26 
AnswerRe: C++ mobile SDK, tips and how tos? Pin
David Crow21-Oct-15 2:58
David Crow21-Oct-15 2:58 
GeneralRe: C++ mobile SDK, tips and how tos? Pin
VooDooChicken21-Oct-15 7:52
VooDooChicken21-Oct-15 7:52 
QuestionHow to get mobile internet usage and balance from telecommunication companies Pin
hoa_ngan_than25-Sep-15 21:31
hoa_ngan_than25-Sep-15 21:31 
AnswerRe: How to get mobile internet usage and balance from telecommunication companies Pin
Afzaal Ahmad Zeeshan25-Sep-15 23:25
professionalAfzaal Ahmad Zeeshan25-Sep-15 23:25 
GeneralRe: How to get mobile internet usage and balance from telecommunication companies Pin
hoa_ngan_than26-Sep-15 18:45
hoa_ngan_than26-Sep-15 18:45 
GeneralRe: How to get mobile internet usage and balance from telecommunication companies Pin
Afzaal Ahmad Zeeshan27-Sep-15 0:56
professionalAfzaal Ahmad Zeeshan27-Sep-15 0:56 
GeneralRe: How to get mobile internet usage and balance from telecommunication companies Pin
hoa_ngan_than27-Sep-15 4:28
hoa_ngan_than27-Sep-15 4:28 
AnswerRe: How to get mobile internet usage and balance from telecommunication companies Pin
Richard MacCutchan26-Sep-15 20:52
mveRichard MacCutchan26-Sep-15 20:52 
GeneralRe: How to get mobile internet usage and balance from telecommunication companies Pin
hoa_ngan_than27-Sep-15 4:17
hoa_ngan_than27-Sep-15 4:17 
QuestionRe: How to get mobile internet usage and balance from telecommunication companies Pin
David Crow21-Oct-15 3:00
David Crow21-Oct-15 3:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.