In this post we will see the way to work with Kendo UI Mobile ListView control and OData. Before you go ahead with this post, I recommend you to read Creating First Windows Phone Application using Kendo UI mobile and PhoneGap or Cordova Using ListView We can use a ListView control as following. You need … Continue reading
In this post we will discuss the way we can harness power of Kendo UI in creating Windows Phone application. Before you go ahead along with this blog post please read “Hello World “Windows Phone Application using PhoneGap or Cordova to setup environment for develop Windows Phone application using Cordova. Once you are done with … Continue reading
In this post, we will setup environment for development of Windows Phone Application using PhoneGap . Start with Downloading PhoneGap from github . After downloading of file extract its content and open lib folder In the Lib folder open Window folder From Windows Folder copy zipped file CoroDovaStarter and copy to folder C:\Users\username\Documents\Visual Studio 2010\Templates\ProjectTemplates\Visual … Continue reading
I was working on an application and I had to select a List Box Item on the hold event. My List Box was as below, You see in the List Box, I have put an Image control and binding Source and Tag dependency property of the image to the data source. At the code behind, … Continue reading
In your application there may be many pages and you will come across requirement to navigate between pages. Windows Phone navigation model allows you to navigate between pages. Windows Phone navigation model is same as web based page navigation model. Even though name suggests in Windows Phone, pages are not windows. In your application, you … Continue reading
In this post we will see the way to capture a photo using camera and saving that in Media Library. CameraCaptureTask chooser is used to capture photo using Windows Phone Camera. To work with CameraCaptureTask , first you need add namespace Then define a global variable, In constructor of the page, you need to instantiate … Continue reading
You may come across a requirement to access the entire picture saved in Media Library of Windows Phone. Media Library can be access using MediaLibrary class. To work with MediaLibrary class you need to add reference of Microsoft.Xna.Framework. This class is defined in namespace Microsoft.Xna.Framework.Media namespace. To work with MediaLibrary, you need to make instance … Continue reading
You can send game invite to multiple users in Windows Phone using GameInviteTask chooser. GameInviteTask chooser is used to send invitation to other users in multi-player game. It provides an invite screen to user where they can configure Email address of other users to send game invitation. Invitation will be sent by GameInviteTask chooser is … Continue reading
In this post we will discuss three important launchers related to Windows Phone Market Place MarketPlaceHubTask launcher MarketPlaceReviewTask launcher MarketPlaceDetailTask launcher MarketPlaceHubTask launcher This is used to launch Windows Phone Market Place client application. You can launch market place client application along with music content as below, You can set content type of the search … Continue reading
In this post, we will see WebBrowserTask launcher and MediaPlayer launcher. WebBrowserTask launcher launches web browser application and display specified URL. This is defined as below, You can set target URL either as string or as Uri. User will be asked for the confirmation. You can navigate to a URL as below, On running you … Continue reading
BingMapTask launcher is used to search a location and mark it on the Bing map. It is defined as below, Search term need to be set as string. If geo coordinate of center is not provided then BingMapTask will search a location on basis of user’s current location. Hospitals can be located and marked on … Continue reading
MarketPlaceSearch Task launcher is used to launch Marketplace client application with the searched result set in the criteria. It helps to search to marketplace from the application. MarketPLaceSearchTask is defined as below, You can see in the definition that, you can set MarketplaceContentType and SearchTerms. MarketPlaceContentType is defined as below, So it can take either … Continue reading
In this post we will see Clipboard API support in Windows Phone. Clipboard API support came as part of Windows Phone 7.5 and it was not part of Windows Phone 7. Class is defined in System.Windows namespace as below, You can set text as below, In above snippet txtSource is a text box. You can … Continue reading
While creating application for Windows Phone you may come across requirement to share certain message from your application on social media sites configured on user device. You can do it using ShareStaus Task. ShareStausTask class is defined as below. It is inherited from ShareTaskBase class. ShareStatus Task Launcher allows an application to launch a … Continue reading