Skip to main content
Filter by
Sorted by
Tagged with
59 votes
4 answers
135k views

I'm trying to Deserialize object to list of object using JSON.NET lib. My json file is: [ { "id": 1, "name": "Poczta", "description": "Opis", "latitude": 52.25197, "longitude": 20....
Criss's user avatar
  • 765
62 votes
6 answers
84k views

I want to use MessageBox for showing download errors in my WP8.1 app. I added: using System.Windows; but when I type: MessageBox.Show(""); I get error: "The name 'MessageBox' does not exist in the ...
sprrw's user avatar
  • 623
51 votes
6 answers
32k views

On a Windows phone, in IE users can go back and forward by swiping on the screen if the swipe is coming from the edge. This OS level functionality is hampering my webpage's UX. Is there any js or css ...
Shekhar Joshi's user avatar
28 votes
9 answers
14k views

I am just creating app package and got the following error Need help how to resolve this.
Ghazanfar Khan's user avatar
36 votes
1 answer
9k views

I'm having a problem with suspending event on Windows Phone 8.1 using WinRT, it does not fire. I don't know why. This is my code: /// <summary> /// Initializes the singleton application object. ...
user avatar
27 votes
3 answers
10k views

I have created an ellipse in Windows Phone 8.1 Silverlight App and UWP both and I wanted to fill it with animating waves, For this purpose, I am following this solution but it is for WPF so I am ...
Shubham Sahu's user avatar
  • 2,013
49 votes
3 answers
27k views

Is there a way to handle http status code 422 gracefully. I am looking for the best practice here. I know that HttpStatusCode is an enum so what i tried is this, HttpStatusCode Unprocessable = (...
golldy's user avatar
  • 1,309
22 votes
4 answers
24k views

Let's say, I've got something like this (in MainPage.xaml): <Page.Resources> <Style TargetType="TextBlock" x:Key="TextBlockStyle"> <Setter Property="FontFamily" Value="...
kodi1911's user avatar
  • 722
21 votes
4 answers
17k views

I've been developing a windows phone app in a team since June. Everything worked fine with all the syncs until today. I synced the project and vs started giving me the errors "WindowsPhoneApp.MainPage"...
Usr's user avatar
  • 2,888
37 votes
4 answers
53k views

Coming from Windows Phone 8 I have never thought there will be a lot of changes done to the Windows Phone 8.1 code. Basically I'm just wondering how to do page navigation just like how you would do it ...
Ahmed.C's user avatar
  • 487
13 votes
6 answers
44k views

Using Windows.Web.Http.HttpClient how can I download an image? I would like use this HttpClient because it is available to use in portable class libraries.
David Spence's user avatar
  • 8,089
48 votes
3 answers
23k views

How to hide the Status bar in Windows Phone 8.1 (C#, XAML)? In Windows Phone 8 it was done by setting shell:SystemTray.IsVisible="False" at any page. But its not available in Windows Phone 8.1
Kalyan's user avatar
  • 1,393
15 votes
5 answers
18k views

I cannot add a solution reference to a portable class library to my Windows Phone 8.0 apps in Visual Studio 2012. When I try to add it by browsing to the .DLL, then it works. I receive this error when ...
jeremyr's user avatar
  • 466
25 votes
1 answer
21k views

I have a problem when my code execute this using: using (ZipFile archive = ZipFile.Read(File)) //<== Crash Here! { foreach (ZipEntry entry in archive.Entries) { entry.Extract(...
Merlí Escarpenter Pérez's user avatar
26 votes
3 answers
22k views

I have 2 pages in my Windows Phone 8.1 Universal App. I navigate from Page1.xaml to Page2.xaml by using a button with the click event code: this.Frame.Navigate(typeof(Page2)); When I am on Page2, ...
Niels's user avatar
  • 2,606
29 votes
8 answers
20k views

I have just upgrade my windows phone 8 to windows phone 8.1. When I connect my phone to pc and run my project it gives me a specified communication resources(port) is already in use by another ...
Ajay's user avatar
  • 6,598
4 votes
3 answers
2k views

This is probably an easy one (it may even be a dupe), but I cannot find answer to this - how to print number using Hebrew letters? I've tried to change app language and/or using format provider: ...
Romasz's user avatar
  • 29.9k
12 votes
6 answers
12k views

I did fresh W10 and VS 2015 install and now when i try running newly created hello world type of app on emulator it doesn't load, all it says is: after 5-10 minutes it exits and Visual studio ...
Edgar.A's user avatar
  • 1,393
25 votes
3 answers
43k views

I have a Windows Universal Project with multiple API calls. One method refuses to work eventhought my other calls work perfectly like this. I have tried the using keyword thought it would resolve the ...
timr's user avatar
  • 6,992
12 votes
11 answers
12k views

I've been trying to get the emulator to work for days. Previously I tried the Windows Phone 8.1 Emulator as well as the Windows 8.1 Simulator and both were stuck at loading the OS. Earlier today I ...
Justin XL's user avatar
  • 39k
14 votes
7 answers
5k views

I've looked everywhere and just can't find a way to launch the Rate and Review from my app. Does anyone know how to launch this task on the new Windows Phone 8.1?
LPains's user avatar
  • 952
-1 votes
1 answer
22k views

Is it possible to get the SIM MSISDN & IMSI number in windows Phone app development? I have gone through some of the Q/A but they all are asked a long time ago.
Jigar Shah's user avatar
9 votes
2 answers
3k views

previously in Windows Phone 8 we could use Clipboard to share text. It's supported in Windows 8, Clipboard.SetContent(dataPackage); But I see it is not supported for Windows Phone Runtime. Is it not ...
user3646098's user avatar
16 votes
3 answers
49k views

I'm having trouble setting the Content-Type on HttpClient. I followed along this question: How do you set the Content-Type header for an HttpClient request? But still no luck. String rcString = ...
timr's user avatar
  • 6,992
15 votes
2 answers
17k views

Those are my declarations and methods of DispatcherTimer: private DispatcherTimer DishTimer; private TimeSpan SpanTime; private void InitTimer() { DishTimer = new DispatcherTimer(); ...
kazama's user avatar
  • 211
10 votes
3 answers
37k views

In Windows phone, how can I select all text in Textbox when the TextBox has focus? I try setting the get focus property of Textbox: private void TextBox_GotFocus(object sender, RoutedEventArgs e)...
hap497's user avatar
  • 165k
3 votes
1 answer
4k views

I want to use Instagram API for the direct feature and don't have more knowledge about OAuth2.0. I know Instagram provides direct API this app is using direct API but I don't know how to implement it. ...
sohan vanani's user avatar
  • 1,574
21 votes
3 answers
6k views

I submit a test Windows Phone Silverlight Project 8.1 and get this error when submit The package identity associated with this update doesn't match the uploaded appx: "2e740376-677c-4df8-b1af-...
HelloWindowsPhone's user avatar
23 votes
1 answer
19k views

I'm working on an Unified fitness app for Windows 8.1 and Windows Phone 8.1. Ideally one of the core views would feature a daily progress meter. The problem is that I haven't been able to come up with ...
TheMoonbeam's user avatar
36 votes
4 answers
7k views

Is there a way to smoothly animate a ScrollViewers vertical offset in Windows Phone 8.1 Runtime? I have tried using the ScrollViewer.ChangeView() method and the change of vertical offset is not ...
Kristian Vukusic's user avatar
18 votes
3 answers
13k views

Well, my question is simple: How do I capture pictures with a Windows Store App for Windows Phone 8.1, using the camera? The samples on MSDN use Windows.Media.Capture.CameraCaptureUI, which is not ...
GlorfSf's user avatar
  • 370
28 votes
2 answers
12k views

How to get the device unique id in Windows Phone 8.1? The old way of using DeviceExtendedProperties.GetValue("DeviceUniqueId") does not work for Windows Universal app.
MohanRajNK's user avatar
10 votes
6 answers
8k views

The question in title is not the real problem. I went through many sites and blogs and go to know that Environment.OSVersion gives you the current OS version of the phone using our app. But the ...
Apoorva's user avatar
  • 1,047
11 votes
6 answers
21k views

I installed Visual studio 2015 and I'm trying to create a test application for Windows Phone 8.1. When I create a new project, I get this message: Any suggestions on how to solve this problem?
Minions's user avatar
  • 5,537
11 votes
9 answers
42k views

I bought a Lumia 630 dual SIM recently and has been trying to register my phone for development, but kept getting this error "Unable to connect to a phone. Make sure the Windows Phone IP over USB ...
ken lee's user avatar
  • 275
27 votes
2 answers
33k views

I have been looking everywhere for some sample code on how to encrypt a simple string with the encryption in the title using the Bouncy Castle Framework. This code will run on a Windows Universal ...
timr's user avatar
  • 6,992
0 votes
1 answer
6k views

I'm developing Windows 8.1 Universal application with Visual Studio 2015. After creating app packages successfully, I'm unable to deploy app into Windows Phone device. Facing issue like "the provided ...
KamakshiReddy's user avatar
8 votes
7 answers
11k views

Here's the details: Created a blank Universal Windows App in Visual Studio 2015 Set to ARM, Debug Attempt to deploy to a Lumia 925 Running Windows 10.0.10166.0 Phone is in 'Developer Mode' I unlocked ...
kernanb's user avatar
  • 586
7 votes
3 answers
9k views

Can Windows Phone 8.1 or Windows Phone 10 applications be created in Visual Studio 2017? Windows Phone 8.1 applications created in VS2015 are not loaded in VS2017. Instead "(incompatible)" text is ...
Pawel Lesnikowski's user avatar
14 votes
3 answers
13k views

I want read one file .txt in root folder of my project into my database at first time application launch, but I don't know how to do that. Anyone know how can I do that, please help me... Thanks I'm ...
Bolt Delta's user avatar
24 votes
5 answers
7k views

I'm having issues with scrolling through ListViews in my Windows Phone 8.1 App. Short lists scroll just fine, scrolling smoothly however as soon Virtualization kicks in the entire ListView "wobbles" ...
CoreyRalli's user avatar
5 votes
2 answers
46k views

I am working on a Windows Universal app using the new runtime for Windows Phone/Store apps. I am sending a request to a server using the following code and expecting a HTML response back. However ...
irldev's user avatar
  • 409
15 votes
3 answers
8k views

I am trying to display some text along with binded data, for example, I have the code: <TextBlock Text="{Binding Shorthand}" Style="{ThemeResource ListViewItemTextBlockStyle}" /> I want to add ...
blawford's user avatar
  • 465
15 votes
3 answers
12k views

In windows phone 8, its very easy to add an App Bar and manage it, but now i test new windows phone 8.1 SDK to build a project with new Geofencing feature but i don't know how to add an App Bar in the ...
user avatar
6 votes
1 answer
13k views

I am trying to display some data from an Observable Collection to a ListView. Binding is working fine. My only problem I cannot fix is the layout of the ListView.I use a Grid with 2 rows to split my ...
Andreas777's user avatar
5 votes
2 answers
5k views

I'm trying to develop a Windows Phone 8.1 App but I need to recognize some numbers from different Displays. I was following this example: http://bsubramanyamraju.blogspot.com/2014/08/windowsphone-81-...
Federico Navarrete's user avatar
17 votes
2 answers
13k views

I'm writing an application for Windows Phone 8.1. I need to save an UIElement as an image file (I'd prefer JPG or PNG). I'm using RenderTargetBitmap class to do this. After calling the method ...
DarioDP's user avatar
  • 627
16 votes
1 answer
11k views

I'm writing an app which will make a phone call, send sms or email just like the People app in wp 8.1 . So far I've found a link form msdn which said "Applies to: Windows Phone 8 and Windows Phone ...
truongnm's user avatar
  • 2,516
6 votes
2 answers
3k views

Are there any classes in Windows RunTime APIs to find the current device information(OS info, RAM size, power source) ? The equivalent class in Windows Phone 8 is Microsoft.Phone.Info.DeviceStatus Any ...
MohanRajNK's user avatar
3 votes
2 answers
2k views

I have got Visual Studio 2015 Ultimate Preview installation through my students Dreamspark account. I installed it on top of updated Windows 8.1. workstation. I have Windows Phone 8.0 application that ...
azec.me's user avatar
  • 5,206

1
2 3 4 5
154