windows-phone

How to open the list of apps from the same publisher on the marketplace?

有些话、适合烂在心里 提交于 2019-12-11 09:24:39
问题 Opening the url "http://www.windowsphone.com/en-GB/store/publishers?publisherId=" opens in the browser, doesn't go the built-in store app. Is there any custom url for this? Using a MarketplaceSearchTask with my publisher name as the search term also doesn't work, other apps from other publishers also appear 回答1: I know this post is little old, but I'm facing this issue as many do. Microsoft doesn't offer an option to open market place with only publisher apps. Search is not bad idea but it

Cross device photo capture for upload

…衆ロ難τιáo~ 提交于 2019-12-11 09:20:00
问题 Since iOS6 Mobile Safari browser users of the have been able to upload images from their device either through the camera or their photo album. Web developers only had to write a upload script bound a file input tag as follows: <input type="file" accept="image/*" capture="camera"> This would prompt iOS users to select the image source (image file or camera) and then the image would be uploaded to the server. Something like in this image. This works well for iOS with Mobile Safari however, I

Pull To Refresh with Long List Selector Windows Phone 8

…衆ロ難τιáo~ 提交于 2019-12-11 09:12:00
问题 I'm currently working with Windows Phone 8 application and get some problems with Long List Selector(LLS). Listbox do it by using TranslateY value: UIElement scrollContent = (UIElement)this.targetScrollViewer.Content; CompositeTransform ct = scrollContent.RenderTransform as CompositeTransform; //ct.TranslateY: I need this value in Viewport's LLS to detect exactly the distance moving from the TOP I'm try to detect pull-to-refresh with LLS but it has some flaws(using Mouse Enter, MOve, and

VS2012 error setting references to mvvmcross for WP8

旧城冷巷雨未停 提交于 2019-12-11 09:10:16
问题 I'm following this tutorial for mvvmcross and I'm trying to get the "Windows Phone UI" project working. However when I try to set references to the mvvmcross binaries, Visual Studio (2012 Premium) displays an error: a reference to a higher version or incompatible assembly cannot be added to the project. I am using the mvvmcross binaries from 2013_01_28 as specified in the tutorial and have installed Windows Phone SDK (7.1 and 8.0). I have tried with both WP7.1 and WP8 projects but same error

Disable double tap zoom on Windows Phone

随声附和 提交于 2019-12-11 09:00:55
问题 I've been working on a browser based clicking game using HTML and JavaScript. I have managed to suppress default behaviours causing mobile browsers to zoom, scroll and perform various other tricks in iOS and Android. However with the Windows Phone a double click still causes it to try and zoom in. In testing it zooms in and then reverts back to its normal size but this is enough to block the game play element, which is clicking as fast as you can. I have the following in HTML: <meta name=

windows phone data binding listpicker to List of Strings

╄→гoц情女王★ 提交于 2019-12-11 08:51:46
问题 I have a list of strings that initializes in the constructor: public List<String> m_Distances = new List<String>(); public List<String> Distances { get { return m_Distances; } } and also in the constructor: listPickerDistance.ItemsSource = Distances; Now in my XAML: <TextBlock Text="Distance" x:Name="textBlockDistance"/> <toolkit:ListPicker ItemsSource="{Binding}" x:Name="listPickerDistance"> <toolkit:ListPickerItem> <DataTemplate> <TextBlock Text="{Binding Distances, ElementName

Is it possible to create a Windows Phone live tile where no title is displayed?

亡梦爱人 提交于 2019-12-11 08:37:02
问题 I've got a background image which contains the title of my application already. I don't want to display the Windows Phone title on the tile -- because displaying it there covers up the content I want to show. Several Windows Phone applications, such as Office, don't display any title at all on their live tile. But if you try to enter a blank name for the live tile, Visual Studio complains at you.... forcefully. Is not showing a separate title layer something that's only available to Microsoft

How to keep a mobile device from switching off its display when showing a HTML page

╄→гoц情女王★ 提交于 2019-12-11 08:28:51
问题 is it possible to tell a mobile browser, that as long as a certain HTML page is displayed, the device should not turn off its screen? I want to build something like Project Blinkenlights, but every participant brings his/her own pixel. To set each display to a certain color at a given point in time is managable, just let each one open a website that shows a blank page and changes the background to color the screen. I'd use JavaScript to link the devices and have them log into a control server

Accessing multiple arrays in JSON using C#

青春壹個敷衍的年華 提交于 2019-12-11 08:14:14
问题 My JSON looks like this: {"2013" : [ { "date":"2013-01-09 12:00:00","height":0 }, { "date":"2013-01-19 12:00:00","height":3 }, { "date":"2013-01-29 12:00:00","height":2 }], "2012" : [ { "date":"2012-02-09 12:00:00","height":0 }, { "date":"2012-02-19 12:00:00","height":4 }, { "date":"2012-02-29 12:00:00","height":2 }], "2011" : [ { "date":"2011-03-09 12:00:00","height":3 }, { "date":"2011-03-19 12:00:00","height":8 }, { "date":"2011-03-29 12:00:00","height":2 }] } What I am trying to do is get