0
votes
0answers
7 views

How to bind IsSelected ListboxItem property in a windows phone application?

In WPF I used to do this: <ListBox.ItemContainerStyle> <Style TargetType="ListBoxItem"> <Setter Property="IsSelected" Value="{Binding IsSelected}" /> </Style> ...
1
vote
1answer
61 views

Why I can't bind a ObservableCollection<T> in Windows phone 7.8 and below?

Context: Visual Studio 2012 Express for Windows Phone (Update 2) Project build based on the official template Panorama (Windows Phone OS 7.1) Problem: All codes works OK in WP8, but when in WP7.8 and ...
0
votes
0answers
42 views

Dependency property and TypeInitializationException

I have wierd problem and I don't know completely what is going on. In my windows phone 8 application I created user control with dependency property: public string Symbol { get { return ...
-2
votes
0answers
17 views

How to design first tab control or telerik tab control using xaml in Windows Phone XAML? [closed]

Hi; i am new in wp8 application. I wish to design tab control like below. How can i do that. i have been written ecf services to fill tab. i dislike prepared code. i am not a leech. i have no time to ...
0
votes
1answer
24 views

Change the Visibility and then change the Opacity of a Silverlight/WPF UIElement

I'm making a Windows Phone 8 app and would like to first fade out and then -- and only then -- actually turn a UIElement's Visibility to "Collapsed". However, I can't figure out how to make them ...
1
vote
3answers
33 views

Image Aspect Ratio

I have a grid system on my silverlight windows phone 8 page which will accommodate a number of pics on a button click. The size of the cells assigned to be 150x100. My question is, if the original ...
0
votes
1answer
40 views

Some Silverlight and Windows Phone generic questions of a beginner

I'm starting developing Windows Phone applications and even having a somewhat strong background in WPF is my first time with Silverlight. There are some things that I don't understand yet: Is ...
-2
votes
0answers
33 views

GART for Windows Phone 8 [closed]

when I try to compile my project on WP7 for WP8, I have problem: Unable to find the name of a type or namespace "GART" (missing a using directive or an assembly reference?) How I can resolved this ...
0
votes
0answers
20 views

Get control's bounding box relative to the screen

I need to get the bounding box of the control, relative to screen. Currently, I have the following code: var trans = control.TransformToVisual( phoneApplicationFrame ); Rect rcLocal = new Rect( 0, ...
0
votes
0answers
29 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 ...
1
vote
0answers
44 views

annoying behavior in binding property in control to another one

I have two radio buttons n my XAML like this: <RadioButton x:Name="Radio1" Margin="12,46,30,0" HorizontalAlignment="Left" ...
0
votes
0answers
26 views

Windows Phone 8 RSA Encryption

Hi i am trying o generate my public key for my RSA 4096 encryption in my windows phone 8 ecryption app i am using this method: RSACryptoServiceProvider rsaProvider = new ...
0
votes
1answer
114 views

How to full Screen popup in windows phone 8?

Hi; i can not fit RadModalWindow on windows phone 8 application. How to fill all screen my popup? <telerikPrimitives:RadModalWindow Name="cardselect" IsFullScreen="True" ...
3
votes
1answer
37 views

XAML clr-namespace - using incompatibility?

When sharing code between WinRT and WP8: WP8 wants: xmlns:vm="clr-namespace:MyApp.ViewModels" WinRT wants: xmlns:vm="using:MyApp.ViewModels" This means you can't share XAML code - like user ...
0
votes
1answer
40 views

Need help on layering

I am trying to layer my WP app & following MVVM pattern. I have a VM with an ICommand which runs when a button is clicked on View. A click on button now runs a method as pointed by ICommand which ...
0
votes
1answer
44 views

Item realized event does not fire

Quick question about the Item realization event in WP8. Here is my event registration which I call in the ctor for the View. EpisodeList.ItemRealized += EpisodeList_ItemRealized; Also here is my ...
0
votes
2answers
50 views

Change Panorama control title movement amount

Is it possible to change the movement amount of the title of a panorama control in a windows phone 8 application when you move between panorama items? the logo in my app is moving way too much that ...
0
votes
0answers
38 views

Fade in/out animation cause the ScrollViewer's content blurry

Here is my code, it can runs on Windows Phone 8 emulator. XAML: <Grid x:Name="ContentPanel"> <ScrollViewer> <StackPanel> <Button Content="Sample ...
0
votes
1answer
58 views

How clip a Grid in the shape of Star Path in silverlight c#?

I have a Grid & Star shaped Path. <Path x:Name="StarPath" Data="M213,135 L183,213 L87,246 L159,288 C159,288 140,372 140,375 C140,378 226,329 226,329 L303,367 L280,275 L316,216 L246,219" ...
1
vote
0answers
42 views

“ReorderListBoxItem must have a DragHandle ContentPresenter part.” issue

We are working on Windows Phone 8 app and try to use the reorder list box control. For previous version of our app it's working. But now, when i bind the collection to the reorder list box, i've got ...
0
votes
0answers
78 views

wp8: take screenshot with keyboard

I got a project which includes screenshot of wp8 content's root view. But if someone click a edittext and open virtual keyboard i can't get this keyboard view in my picture.I mean wp8 content's root ...
2
votes
3answers
250 views

Unable to Deploy WP7 SDK Application on Windows Phone 8 Through VS2012

I have Registered my device for developer. But after choosing device in VS2012 and start deploying , It Gives error . Unable to install application. The maximum number of developer applications on ...
0
votes
0answers
55 views

Windows phone 8 background execution

small scenario: I want my Running app to track my location in the background if it's "running time" otherwise I just want it to be deactivated when i leave it. I know I can control if the app ...
1
vote
0answers
83 views

LonglistSelector can't scroll to last item when decrease height of it

I'm a new in WP8. I have a problem with longlistselector. I have a longlistselector and I scroll it to last item. It's OK. But when I decrease the height of it and scroll it to last item. but The ...
1
vote
2answers
95 views

How to choose a background color according to windows phone theme in xaml

I have Grids on my listbox items and I want to choose their background color according the light or dark theme. For exemple, if I'm in light theme the backgroud color of my grid will be red and if ...
0
votes
1answer
217 views

Get button in Pivot Header programatically in Windows Phone 8

Summary: I need to retrieve a button (in order to attach a click handler) from a pivot of which template is defined as static resource. How can I do this? A couple of views contain a pivot control, ...
0
votes
1answer
29 views

Custom control binding query

I am creating a custom control by inheriting from ContentControl. Below is the XAML code present in Generic.xaml <Style TargetType="local:MyCustomControl"> <Setter Property="Background" ...
0
votes
2answers
201 views

“The Silverlight 4 SDK is not installed” error, after updating Visual Studio 2012

I have just installed the Update 2 for my Visual Studio 2012 Ultimate. After installing the update and restarting the computer, I am not able to build Windows Phone projects anymore. When I try to ...
2
votes
1answer
49 views

Button after ListBox

I need to show ListBox with dynamic content (so I do not know its height) and Button below it. So user should be able to scroll ListBox to end and see button. In Android I would use RelativeLayout ...
0
votes
0answers
32 views

Windows Portable - Service Reference 5 seconds timeout

I've got a Portable Class Library (WP7.1, Win8) and a service reference. If the service is (temporarily) unavailable, a call results in 5 seconds in a NotFound error. I want to increase that timeout ...
0
votes
4answers
165 views

EventToCommand in ItemControl in Windows Phone 8

I cannot understand why I cant call eventToCommand in my datatemplate inside ItemControl. According to this post I should implement it in the dataTemplate, but the command is never invoked. This is ...
0
votes
1answer
94 views

Isolated Storage not working on windows phone app

I have this Isolated Storage Function to write into storage : public static void WriteIsolatedStorage(object ObjectToStore, StorageType Key) { using (var storage = ...
0
votes
1answer
57 views

Animate Button Position in Windows Phone

I have a Windows Phone application that has two buttons. The general layout of my app looks like the following: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="60" /> ...
0
votes
2answers
108 views

Check For Third-Party App Installation

In my app B, I need to check if app A ever installed. If A has been installed, B will invoke A. If A has not been installed, B will go to marketplace to download A. how to implement this??? ANY ...
2
votes
1answer
98 views

Cant get the files from folder

I want to get files and folders from sd from my wp8 pnone. I use the code: private async void GetFilesAcync() { ExternalStorageDevice _sdCard = (await ...
0
votes
1answer
234 views

How to format date time in a Windows Phone app like the native messaging app

The native messaging app in Windows Phone 8 displays date time like these: 4/3, 8:31p 12/25, 10:01a When I format date time using String.Format("{0:d} {0:t}"), I got these: 4/3/2013 8:31 PM ...
2
votes
1answer
257 views

Upgraded WP7 app to WP8. The thread 0xb6c has exited with code 259 (0x103)

After upgrading our WP7 app to WP8, the app stops working (as in just halts and none of the ui elements work) almost immediately after the splash screen. The only output seems to be this: 'The ...
2
votes
1answer
294 views

How To Play Youtube Videos in Windows Phone using Silverlight Media Framework

I have a Link, an ID (all metadata about a Youtube URL) and I want to play the video, using SMF player in my Windows Phone 8 app. Is this possible?
0
votes
0answers
29 views

System.InvalidCastException in windows phone 8 app

Below is my code, i'm trying to parse my json and get only the "locations" details and pass that to list to use as itemssource, but i'm getting and exception while running this code, can any one help ...
0
votes
1answer
56 views

How to hook up observablecollection member to application resources (resx) file

Hey guys first of all sorry for the bad explanation. My task is translation an application that i wrote not so long ago,generally nothing special. But now i am at a stick point. One function of my ...
0
votes
1answer
120 views

Prevent auto-selection in Windows Phone 8 textboxes

I'm using a read-only TextBox in my Windows Phone app to display copyable text. Now I would like taps on the TextBox a single character, the one on which the user tapped. The following code properly ...
0
votes
1answer
323 views

HttpWebRequest BeginGetResponse callback not firing on WP8 (working on WP7)

I'm having a problem with a previous app not working on WP8, which works perfectly on WP7. This is the code I'm using for the http request: public void SendMessage() { request = ...
2
votes
1answer
43 views

MergedDictionaries and Shared styles across assemblies

Perhaps somebody will help me out. I have been trying all day to find a solution for sharing styles and resources on my WindowsPhone project. The problems is the following: I have a common assembly ...
1
vote
2answers
868 views

Binding Pivot control with Observable Collection MVVM (windows phone 8)

I'm new to WP8 & MVVM. I created wp8 app which requests various bits of data once a user has logged in. I just can't get my pivots header to get created dynamically and I don't know if it is ...
0
votes
1answer
133 views

Use ManipulationDelta event of webbrowser control to scroll a listbox

I have multiple webbrowser controls inside a listBox (Hierarchy: DataBoundListBox->Multiple ExpandableItems->Each expandable item shows a webbrowser control on expansion.). The problem is, the ...
1
vote
2answers
194 views

Change z order of image controls at runtime windows phone

I have several image controls placed on a canvas. I want to change the z order of a selected image control when user click on the app bar button. In the image control class I have public int ...
2
votes
1answer
188 views

Disable tap event on transparent part of image in WP7/WP8

I am using some transparent images in my Windows phone project. Let Say My Origanal Image Size is 400 x 100. After slicing images into four different parts it looks like this. First arrow is active ...
0
votes
1answer
68 views

Multiple language support in windows phone

I'm developing windows phone 8 application which supports two language, English and Spanish. In my application I have one XAML page which contains WebBrowser control. The problem is when I change ...
0
votes
1answer
141 views

WP8 Webbrowser, stop navigation without killing page

I have an app that uses a web browser control to navigate a website. When the user clicks on a hyperlink that will take them out of the site I want to be able to stop the navigation. I tried. void ...
6
votes
1answer
117 views

A black screen is just flashing for a while

In my Windows phone 8 application i have a search page which has a TextBox for user's to enter search keywords. The search will invoke when entering the "Enter" key of the default SIP keyboard.The ...

1 2 3