Tag: Launcher in Windows Phone
-
Launchers related to MarketPlace in Windows Phone
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…
-
WebBrowserTask and MediaPlayerLauncher in Windows Phone
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…
-
Code to Share Status or Links on Social Media sites in Windows Phone
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…
-
How to Use the ConnectionSettings Task for Windows Phone
ConnectionSettings Task allows user to set and adjust device network settings. ConnectionSettings task is defined in Microsoft.Phone.Tasks namespace as below, User can set device network setting to any of the following If you want to set Network connection setting to WiFi, you can set it as below, If you want to set Network connection setting…
-
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…