Tag: Chooser
-
Capture Picture from Camera and Save in Media Library in Windows Phone
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…
-
Code to send game invite to multiple user in Windows Phone
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…
-
What are Launchers and Choosers in Windows Phone 7
Launcher and Choosers API allows application to interact with Native Applications of Windows Phone 7 Launchers Launchers are collection of classes in Windows Phone 7. They help to interact with inbuilt applications on native application of Windows Phone 7. Launchers used to launch one of the inbuilt or native applications from your application. Launchers do…
-
Code to make call in Windows Phone 7
Launchers are used to perform task provided by phone operating system. Making Call is feature of Windows phone operating system and can be used by Launcher API. PhoneCallTask launcher is used to call. This launcher class is defined as below, To work with PhoneCallTask, first you need to add namespace of Microsoft.Phone.Task Then create…