Click here to Skip to main content
15,888,802 members
Home / Discussions / Mobile
   

Mobile

 
QuestionRe: How to take responsive test on local host? Pin
Richard MacCutchan25-Nov-15 1:18
mveRichard MacCutchan25-Nov-15 1:18 
Questionsoftware development cost Pin
Christos green22-Nov-15 1:39
Christos green22-Nov-15 1:39 
AnswerRe: software development cost Pin
Richard MacCutchan22-Nov-15 1:42
mveRichard MacCutchan22-Nov-15 1:42 
GeneralRe: software development cost Pin
Kunal Chowdhury «IN»28-Feb-16 18:51
professionalKunal Chowdhury «IN»28-Feb-16 18:51 
AnswerRe: software development cost Pin
Preston Berger14-Jun-16 5:32
Preston Berger14-Jun-16 5:32 
QuestionDecode QR Pin
Tirumaleswara Reddy.K20-Nov-15 21:58
Tirumaleswara Reddy.K20-Nov-15 21:58 
QuestionI wonder how phone trace working? Pin
JOE Heart Under Blade16-Nov-15 20:29
JOE Heart Under Blade16-Nov-15 20:29 
AnswerRe: I wonder how phone trace working? Pin
Richard MacCutchan16-Nov-15 21:14
mveRichard MacCutchan16-Nov-15 21:14 
GeneralRe: I wonder how phone trace working? Pin
JOE Heart Under Blade16-Nov-15 21:15
JOE Heart Under Blade16-Nov-15 21:15 
Question[WP8.1] How to scale a background image of a button? Pin
Dr Miroslav Stimac6-Nov-15 10:02
professionalDr Miroslav Stimac6-Nov-15 10:02 
Questionlost focus on form in Windows-Mobile Pin
goldsoft2-Nov-15 21:37
goldsoft2-Nov-15 21:37 
Answer[REPOST] lost focus on form in Windows-Mobile Pin
Richard Deeming3-Nov-15 2:14
mveRichard Deeming3-Nov-15 2:14 
QuestionHow to use printer in the universal windows 10 app in Visual Studio c# Pin
Anjani Rajdev30-Oct-15 3:20
Anjani Rajdev30-Oct-15 3:20 
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 

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.