Tagged Questions
0
votes
0answers
37 views
Windows Phone and WinRT Protocol and Codec
Does anybody know if exist open source or commercial libraries for Windows Phone and (or) WinRT for the following protocol/codec:
G.729/G.726/G.723
H263
RTMP/RTMPT
what I found until now is:
...
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 ...
2
votes
1answer
119 views
play audio in background on Windows Phone
I want to play some audio in the background on my Windows Phone. I've written some code like this sample from Microsoft ...
1
vote
1answer
290 views
Can i use windows phone 7 app on windows 8 app store
I developed almost 20 apps on windows phone 7 it also work on windows phone 8 , now i want to upload that apps in windows 8 store . Can i upload all my apps on windows 8 app store or i have to made ...
1
vote
1answer
924 views
Windows Phone 8 Push Notification
The structure of PUSH Notification for Windows Store 8 App differs from Windows Phone 8 app (in terms of Registration, Authentication, etc,.) at least that's what I gather from the two below links.
...
1
vote
1answer
74 views
How to set same animation to dynamically created images in winRT?
I have a set of images which are generated dynamically in a for loop.My objective is to add same storyboard animation to all these same images.I created the animation but while applying it in for loop ...
0
votes
1answer
95 views
How to add bounce effect to dynamically created images in winRT?
My objective is to give bounce effect to dynamically created images within a for loop.
thanks in advance
1
vote
2answers
219 views
Hat operator usage in Windows Phone 8 native projects
I'm coming from C# background, learning C++, specifically on the Windows Phone 8 platform.
Many code samples (installed with the SDK) show usage of the Hat operator ^ (Reference here: Types that wear ...
2
votes
2answers
497 views
How to draw an arc in winRT with animation?
I am a newbie to WinRT and Blend and I need to draw digits 1, 2 etc with drawing effect in my WinRT application. The requirement is like the application will be drawing the digit.
Any help will be ...
0
votes
1answer
113 views
Is there an analogue of Windows Phone 'User Idle Detection' in Windows 8?
I've used the following code on Windows Phone 7 and 8 to disable user idle detection when my App is displaying data to the user and they are unlikely to interact with the screen e.g. A recipe App ...
-1
votes
2answers
180 views
Windows 8 Store [closed]
I just have a general question I haven't been able to find the answer to. If you buy an application in Windows 8 Store(Using your Surface for example.) do you have to purchase that same application ...
2
votes
2answers
612 views
Does windows phone8 sdk support winjs
I used C# develop a WP7 app. I'm wondering if the Windows Phone 8 SDK supports WinJS? If so, I will move to WinJS for WP and WinRT both.
1
vote
2answers
127 views
Recommended approach to port code using SQL database from WP7.5 to Windows 8?
I have an existing Windows Phone 7.5 app. This app is using local database to store the data on the phone (overview of local db in WP). Because of that, my business models are decorated with ...
1
vote
2answers
1k views
Metro app - How to scroll to a particular control in StackPanel
In my C# windows 8 metro app, I have added a StackPanel on top of a ScrollViewer. I have some controls added horizontally on a StackPanel. Once all the controls are added on top of the StackPanel, I ...
3
votes
1answer
998 views
0
votes
2answers
529 views
How to localize a Win 8 metro app
I'm porting my Windows Phone App to Windows 8 and localizing to support several languages as per MSDN. I just want to clarify a few things before I start with the localization.
While localizing for ...
3
votes
4answers
2k views
C# Metro app How to load image from web
I have added Windows.UI.Xaml.Controls.Image on a canvas. I am using HttpClient to make http call to download the image. I am getting the image as stream and adding as a source of a BitmapImage object, ...
0
votes
1answer
827 views
How to make network call and update UI in Windows 8 C# metro app
In my WP7 app I use HttpWebRequest class to make http call to webservice and load the data. From UI thread I make the network call by using Deployment.Current.Dispatcher.BeginInvoke method, once I ...
0
votes
2answers
141 views
Accessing particular service method from metro app?
i have a web services which i am accessing in my client application(metro app) , but i want to access a particular method inside those many methods i have how should i do it ,
as of now , i am doing ...
1
vote
1answer
538 views
Consuming Web services in Metro apps?
i am new to windows 8 metro application development , please let me help out in figuring out this issuse.
i want to consume web services in my metro application but the service reference url is ...
1
vote
2answers
371 views
Optimal Database to be used for metro apps?
I am new to windows 8 metro apps development and i need your help in figuring out my doubt about the database support to metro applications ?
i am developing a application which requires reasonably ...
1
vote
1answer
91 views
if I use a BlankApp(xaml) Template in Metro Apps and develop my desired UI , will it work accordingly in Windows phone also?
1) What I have understood that if you develop a application in metro style, it work in desktop, tablet and also phone?
2) I can understand if I use a standard template like grid template for ...
0
votes
2answers
1k views
Why the DispatcherTimer delegate on work in WinRT?
the code below works in Windows Phone 7
private void ShowTime()
{
txtTime.Text = get24hour();
//display the Date and week.
DateTime nowtime = DateTime.Now;
...
0
votes
0answers
128 views
Frame.Navigate under the hood?
When I use Frame.Navigate(...) it seems the pages I navigate to and from are only initialized one time. (The constructor is only hit the first time I navigate to a specific page). The next time I hit ...
-3
votes
2answers
464 views
Chart control for WinRT
On Telerik blog I found article about create chart controls from WP7 Telerik controls.
http://blogs.telerik.com/blogs/posts/11-10-07/radchart-for-windows-8-winrt-the-compilation.aspx
I am trying to ...
-2
votes
1answer
1k views
Develop for Windows 8/Windows Phone 8 (Apollo)/Windows Phone 7 - WinRT (JavaScript) vs. Silverlight (C#) [closed]
I am looking for the proper technology to start the Metro Windows 8 application for tablet. The problem is that the application should run on WP7 also and in the future on the WP8 (Apollo).
My ...
2
votes
1answer
591 views
Porting from Windows 8 to Windows Phone
I'm trying to port an app from Windows 8 to Windows Phone 7 and having a hard time trying to figure out equivalents of these lines
var localFolder = ApplicationData.Current.LocalFolder;
...
1
vote
1answer
513 views
Web Service Completed Events not show On Metro Windows 8 App Development
Hello this is my first question here, I create a Web Service that is hosted on Azure... And I have a Windows phone client application and a windows 8 metro client application, now when I connected the ...
6
votes
2answers
1k views
Will Windows 8 Metro apps require any change to the code in order to work on ARM based devices?
As far as I understand the Metro part of the runtime is not x86 processor architecture and native code dependant and will work without any change to the code on say an x86 tablet or ARM tablet. Is ...
10
votes
6answers
1k views
How easy is it to port a Windows Phone 7 application to Metro on a Windows 8 tablet?
I know that Metro on both platforms shares a common “look and feel” and that WinRt makes use of XAMLand C# (or VB.NET) like Silverlight does on Windows Phone 7.
However I also know that WinRT is ...