Windows Phone is Microsoft's mobile operating system and software development platform. Use this tag for questions specific to Version 7.x

learn more… | top users | synonyms (2)

0
votes
0answers
4 views

ArgumentNullException while selecting inner node value in xml

I'm trying to get the location name value from the xml document given below, but it shows argumentnullexception . Any help will be appreciated <Response ...
0
votes
0answers
6 views

Translating a rectangle in a grid in WP7

I'm using this code to translate a rectangle in a grid: private void translateRectangle2(double duration) { DoubleAnimation myDoubleTranslate = new DoubleAnimation() { ...
0
votes
1answer
18 views

Exception while loading xml document

I'm developing a windows phone application. While accessing bing maps, exception is occurred while loading an xml document "XmlException - Name cannot begin with '.' character" at the line XDocument ...
0
votes
1answer
13 views

How to avoid autoselect when textbox has focus in windows phone sdk 7.1?

Let's say I have a textbox with number 123.456 (InputScope="Number") When It gets focus, after I tapped it, 456 is autoselected. I can't see any property to cancel this. Is there any hidden way ?
0
votes
1answer
6 views

How to get screen size in Panorama control of Windows Phone 7

How to programatically get an actual screen size (width and height) in Windows Phone? Normally I would use the following: How to get screen size on Windows Phone 7 Series But Panorama control is a ...
0
votes
0answers
14 views

How to program a toolbar on top of windows phone keyboard?

I'd like to add a "hide button" each time the keyboard shows up so that user can see all the screen when he needs to. In iPhone this toolbar exists, is it possible to do the same for windows phone ...
0
votes
1answer
18 views

stackpanel within grid in windows phone does not work

I tried to do this but I got message error : "ColumnDefinition does not support direct content" <Grid> <Grid.ColumnDefinitions> <ColumnDefinition ...
2
votes
1answer
25 views

What is the direct equivalent of the Motion API from Windows Phone on Windows 8?

I'm trying to port a Windows phone program to windows 8, but for orientation the Motion API is used to I have lines of code like the following If Motion.IsSupported Then ...
0
votes
1answer
20 views

Visual Tree Helper makes listbox SelectionChanged fire twice

Visual tree code public static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject { if (depObj != null) { for (int i ...
0
votes
1answer
14 views

WP7-Emulator: Object Invoked has disconnected from its clients

I wrote some apps in C#, Windows Phone 7 (2010 Express Edition). I use Win7. The build is ok, it succeeds. When I start debugging session, the WP emulator appears and disappears a couple of time and ...
1
vote
0answers
33 views

Possible Mvvm-light bug with EventToCommand

Everything starts pretty simple: i have a ListBoxSelector (app is for wp7). Items consists of picture and some text. Items style is stored inside of the StyleTemplate. Image can be tapped, its event ...
0
votes
0answers
9 views

how to convert address box text to geo long lat. in wp7

I want to convert my address box text into Geo coordinates so i can put pin on map. here is the xaml code of my map. <Grid x:Name="LayoutRoot" Background="Transparent"> ...
0
votes
1answer
17 views

is it a kind of bug telerik rad control?

Hi; i have been developed a wp8 application using telerik. I have a radModalWindow generator. Every things works good. But Telerik is confused Transparent color setting.(i guess) My Code below; ...
-1
votes
0answers
13 views

WP7 maximum application name length

I have to prepare names for application in different languages, the problem is sometimes name is too long and we cant find maximum length. Name of application visible on market is taken from xap file, ...
-4
votes
0answers
29 views

UnExpected behaviour when typing in the TextBox in WP8 [closed]

In my WP8 application there is a page which has a list of images. A usercontrol which has a textbox will popup on clicking on the ApplicationBar button. When the textbox got focus automatically a ...
0
votes
1answer
15 views

advertising Ad control disappear and Throws Exception in windows phone 7

i am getting exception from Adcontrol as "A first chance exception of type 'Microsoft.Advertising.Mobile.Shared.AdException' occurred in Microsoft.Advertising.Mobile.dll". my ad control is disappear ...
0
votes
1answer
18 views

save image locally & display windows phone 7

I'm trying to implement an app of news (feedrss) by using WP7 i've tried this solution , but it does'nt work for me , here is my code : namespace PhoneApp1 { public partial class MainPage : ...
-2
votes
0answers
29 views

How to make a udp socket to listen always

How to make a udp socket to wait for a response from server and after receiving response it again goes into waiting state for a response ?
0
votes
1answer
33 views

How to disable scrolling in web browser in wp8?

My objective is to disable the scrolling action in my web browser control without using IsHitTestVisible as false.To click on links I need it to as true. Thanks in advance
0
votes
3answers
25 views

image windows phone database

hi i devolop a Windows phone application with local database this is a table from my database [Table] public class DBannotation { [Column(IsPrimaryKey = true, CanBeNull = false )] ...
-3
votes
1answer
22 views

E-mail confirmation for new account, wp7 [closed]

I create an application for windows phone 7.1 when the user create a new account, he receive a confirmation email and its account won't be activated until he confirm the email. how can i do it?
1
vote
1answer
23 views

Windows Phone Application Resources

I've added resource to App.xaml like this: <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> ...
2
votes
0answers
15 views

Endpoint listening error in WCF and windows phone

I am working on an windows phone,I made a WCF service.Throught i am uploading some data to server.Its working well in emulator but on phone some time application crashes due to wcf service error.Its ...
-4
votes
1answer
24 views

How to Install Windows Phone 8 SDK on Windows 7?(I don't need the emulator) [closed]

If I just want realize the connection between win7 and wp8 use sdk8, is that possible..like overwrite file in sdk8? thanks
1
vote
1answer
25 views

Windows Live SDK get user email (personal)

I need help on getting the user's email on Windows Live SDK for Windows Phone. I tried searching if other people has the same issue but nothing.. (I already added wl.emails and basic.) Here's what I ...
0
votes
1answer
10 views

Update NTEXT column in SQL Server CE in windows phone

I'm trying to update definition but facing an exception SQL Server does not provide comparison of NETXT, XML, Image etc don't know how to handle it. My table structure looks like this: ...
1
vote
1answer
37 views

How to solve the “System.Tuple defined multiple times issue”?

I work on a project target WP 7.5 and above, I add a packages using the Nuget in VS 2012 which name is Coding4fun(Controls). After that, the IDE give me a warning, Warning 1 The predefined ...
1
vote
0answers
23 views

How to connect to a php server socket from window phone 7?

I have a php socket running and code is like this <?php $host = "127.0.0.1"; $port = 1235; $socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n"); $result = ...
-3
votes
0answers
10 views

Where can I do SAR Test for my mobile? - India [closed]

I know this is out of the scope of Stack Overflow website. But I don't think any other site which can respond to this question well. My issue is, I want to test my Mobile's (Samsung Omnia W) SAR ...
-2
votes
0answers
17 views

Project suddenly breaks with tons of xaml errors “The name X does not exists in the namespace Y” [closed]

Subj. Guys, what are you doing in this case in the first turn? Edit: in my case, fixing non-xaml error helped.
0
votes
0answers
17 views

How to integrate Sim Tool Kit in WP7 / WP8

I need to integrate Sim Tool Kit in my app to get some information of sim card like carrier id etc. Please help me whether WP7 supports SIM TOOL KIT or not. If yes please help me out
-1
votes
0answers
18 views

hot set loader image while getting catch exception error in windows phone? [closed]

Hi i am developing windows phone 7.i want to set loader image or refresh button on catch exception,like when i am getting catch exception error while i want set loading image in windows app.please ...
0
votes
1answer
26 views

How to make a web request in WP7 from a server with unsupported encoding

I'm making a Windows Phone 7.1 app that needs to get some content from an API described in http://feed.evangelizo.org/reader.php For example, this is a valid request ...
0
votes
1answer
12 views

Make a Customized LayoutRoot as a template for creating New layouts

Good day, am still a beginner to Windows Phone and visual studio environment so apologies in advance. In Visual Studio, when creating a new layout we have the LayoutRoot by default. After having this ...
0
votes
0answers
21 views

Caching of displayed images in Silverlight/Windows Phone app

My app shows a list (LongListSelector to be precise) with text and Images. For the images, I currently bind the Source attribute to an HTTP URL provided by the model class, which works without ...
0
votes
0answers
29 views

populate textbox from another .cs File

I'm using .net 2010 Windows phone programing. I have issuse to populate txtbox that is located in ThreadPage.xaml file from another .xaml file ConversationView.xaml file. public partial class ...
0
votes
0answers
30 views

writeable bitmap writes the same image to isolated storage everytimein windows phone

I have the following code which writes the bitmap image stream to a file on isolated storage. But it always writes the same image data to isolated storage file "DemoImage.png" every time. even if I ...
0
votes
0answers
14 views

Application Cache not working in Windows Phone / Phonegap 2.7.0

I am trying to cache html pages via the cache manifest file. I have tried the working of the offline working of these pages in chrome. However in windows phone 7, the pages are not loading. Please ...
1
vote
1answer
19 views

WebClient connecting to HTTPS gives NotFound error on some phone devices

I'm getting a NotFound error in my application when trying to download a file from a HTTPS server using WebClient. It only occurs on certain devices (eg Nokia 810), but the same application runs fine ...
0
votes
0answers
13 views

windows phone, wsdl function “not found” error

I am programming a little windows phone 7 application. It should consume webservices. I tested sucessfully the code in a xammp (local) environment, but if on a free webhoster I get an error ...
0
votes
0answers
14 views

Windows Phone :Copy a project to new solution- An exception of type 'System.InvalidOperationException' occurred in Microsoft.Phone.ni.dll

I have a solution which have one project "windows phone" ; and I add another project to the solution. so the solution now have two project. when I try ti run the new project it's give me exception ...
1
vote
1answer
59 views

“Error Loading Page” on changePage using Ajax

So I have this nice PhoneGap application (cordova 2.7.0, along with jquery mobile 1.2.0) that works great on my Android phone. The www folder also works flawlessly using Firefox, Chrome (through ...
0
votes
1answer
31 views

Creating Image control dynamically, and set Image source dynamically

I need get YouTube videos Thumb in my application. Sometimes need to show video thumb just for one video, sometimes for three. To display video thumb for one video I use this code <Image ...
2
votes
3answers
1k views

Windows phone disable application bar button

So, what is my problem ? I have a popup, and when i open it, i want to disable current page in my windows phone applications. so i make this this.IsEnabled = false; But my ApplicationBar is still ...
6
votes
1answer
4k views

Saving Bitmap as PNG on WP7

I'm trying to save a bitmap to my isolated storage as a png file. I found a library on Codeplex called ImageTools which people have been recommending but when i try it and attempt to open the file it ...
2
votes
3answers
2k views

How to Install Portable Library Tools on Visual Studio 2010 Express for Windows Phone

I've been trying to install the Portable Library Tools and create a Portable Class Library using Visual Studio 2010 Express for Windows Phone. It seems like it should work as PCL says it supports ...
0
votes
2answers
882 views

slide-in search box on windows phone (like in the bing maps app)

In the bing maps app on windows phone, when I click the search button I get a search box sliding in from the top of the screen, and the keyboard sliding in from the bottom. I want to achieve the same ...
2
votes
2answers
473 views

How to reach ApplicationBar from PopUp window?

I'm trying to protect my app with password. I've chosen a PopUp window in which user can enter their password. My app contains ApplicatioBar so I need to hide it when password input dialog is shown. ...
17
votes
8answers
7k views

TextBox Binding TwoWay Doesn't Update Until Focus Lost WP7

I have a page with some text boxes for data input. The binding of the text box is set to TwoWay. The data in my view model only gets updated if the text box loses focus. If I click a button, such as ...
5
votes
2answers
2k views

How to get main page from any part of Windows Phone 7 application?

Is there any way of getting main page object from any of its child controls? As a possible solution I see here bubbling through parents and stopping as soon as a parent is of PhoneApplicationPage ...

1 2 3 4 5 343