Questions tagged [windows-phone-7.1]

Windows Phone 7.1 is the version number of the OS and developer SDK for Windows Phone "Codename Mango". Phones running this operating system are marketed as being "Windows Phone 7.5".

The codename "Mango" update to Windows Phone 7. Made available to developers in June 2011 and scheduled for public availability later in 2011. It contains over 500 new features and 1500+ new APIs.

This tag can be considered a synonym of [windows-phone-7.5] as they both refer to the same thing.

Use of the generic tag [windows-phone-7] is recommended as more people are likely to see such questions. This, hopefully, increases your likelihood of a fast and accurate answer.

More on the confusion between 7.1 & 7.5 can be found at:

More information

Chat Room

Chat about Windows Phone with other Stack Overflow users

See for more information.

1878 questions
7
votes
1 answer

Does the ScheduledTaskAgent and PeriodicTask need to be in a seperate assembly from the main app?

I tried to follow this example from Microsoft, best I can tell I did everything except putting the ScheduledTaskAgent and PeriodicTask in a seperate assembly. When I run my app in the emulator and try to launch the Periodic task…
Tyler
  • 1,019
  • 12
  • 27
7
votes
1 answer

Bug in WP 7 implementation of Uri.IsWellFormedUriString?

In a .NET 4 console application, and a Silverlight 4 application, the following returns false: Uri.IsWellFormedUriString("/test", UriKind.Absolute) but the same call in a Windows Phone app (7.0 or 7.1 using SDK 7.1 Beta 2 published 6/29/11) returns…
Jeff Ogata
  • 56,645
  • 19
  • 114
  • 127
7
votes
1 answer

Converting system.windows.media.brush to Hex color code

In my Windows phone7 application I placed a canvas and have set its background color to some hex color code.Now I am not able get the hex color code value through c# code.I used the below code but it give the color value in…
Mini-Con
  • 397
  • 1
  • 4
  • 20
7
votes
1 answer

HttpWebRequest fails accessing http://xn--fanbys-exa.org/episodes.m4a.rss

I have a strange issue accessing the following url: http://xn--fanbys-exa.org/episodes.m4a.rss Here is the code: void WebRequestButton_Click( object sender, RoutedEventArgs e ) { string url =…
Volker Voecking
  • 5,203
  • 2
  • 38
  • 35
6
votes
1 answer

Style the wp7 (Mango) keyboard

I want to style (actually just change the color) on the built in keyboard in an wp7 application. I am creating a Silverlight project, and using a as the input, and this has the default styled keyboard on focus. Is there a way to style this…
code-zoop
  • 7,312
  • 8
  • 47
  • 56
6
votes
3 answers

How to remove the black space around the button in WP7?

As I see, WP7 buttons are surrounded by a black space of some pixels. How I can remove it? I've read this post, but I didn't managed to remove it! Could you please give a working example? I've tried to wrap button with element, but it…
theateist
  • 13,879
  • 17
  • 69
  • 109
6
votes
1 answer

Background File Transfer problems

I have this problem when using the Background File Transfer in WP7. It works perfectly when my application is running, but as soon as I click the Windows button, it stops(and resumes when I activate the application again.) Isn´t the purpose of…
kgrevehagen
  • 514
  • 6
  • 20
6
votes
1 answer

How to detect when the theme is changed in WP7?

My app is fully theme aware. When my app is deactivated and user changes theme from dark to light (let's say) and returns to my application, the theme is not refreshed. Even though the phone theme is light my app still remains dark. I did some…
betim
  • 91
  • 1
  • 4
6
votes
2 answers

Error catching with webexception

I'm using a simple webclient to retrieve some XML from a web service, I have this encased in a simple try, catch block (catching WebException). Like the following; try { WebClient client = new WebClient(); …
Nathan
  • 2,461
  • 4
  • 37
  • 48
6
votes
3 answers

How to set the links in a text block clickable in wp7

I have a text box contain links .the contents in the text are generated during run time.My problem is that the links inside the text is not clickable,how can make all links inside the text block clickable so that when i tap a link it should open…
Sujiz
  • 1,720
  • 1
  • 20
  • 30
6
votes
1 answer

Change ProgressIndicator color

I want to change the color of the dots of the SystemTray.ProgressIndicator to fit my app's overall design. Is there a way to do this? Thanks for any advice. BTW: Binding to ProgressIndicator in XAML
Rico Suter
  • 11,548
  • 6
  • 67
  • 93
6
votes
1 answer

NetTcpBinding on Windows Phone 7.1 (Mango)

Now that Mango supports sockets, is it possible to create WCF NetTcpBindings? Currently the class is not included in System.ServiceModel.
korve
  • 189
  • 10
6
votes
3 answers

WP7 Toolkit Update Removed GetItemsInView() from the LongListSelector

With the latest update to the Windows Phone Toolkit they have overhauled the internals of the LongListSelector for the Mango release. One of the changes was removing support for the GetItemsInView() function (it now returns an empty list). This…
6
votes
2 answers

API to support Bluetooth in Mango?

Will there be an API in the upcoming Mango that provides access to devices coupled via Bluetooth? I am interested in processing data sent from Polar Hear Rate Monitoring belt.
6
votes
2 answers

How to use a StaticResource Brush's Color?

I have a brush as a Resource: and I want to use it's Color: <... BackgroundColor="{StaticResource AppBrush.Color}"/> But it isn't possible and…