Tag: wp7dev
-
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…
-
Creating Alarm and Reminder in Windows Phone
In this post we will see the way to create Alarm and Reminder in Windows Phone. Creating Alarm Alarm can be created using the Alarm class. Alarm class is part of Microsoft.Phone.Scheduler namespace. Alarm class takes name of the alarm as the input parameter of the constructor. Name of the alarm must be unique within…
-
How to consume WCF REST Service with JSON in Windows Phone 7
In this post I will show you the way to consume JSON WCF REST Service in Windows Phone 7. This post is divided into four parts. Creating simple WCF REST Service for ADD Consuming JSON REST Service in Windows Phone 7 application. Creating complex WCF REST Service with custom classes and types. Consuming complex JSON…
-
Video on How to work with Live Tiles in Windows Phone 7
You can read more about Live Tiles in below articles Live Tiles in Windows Phone 7.5 or Mango phone Delete Secondary Tiles in Windows Phone 7.5 or Mango Phone Schedule the Tile update in Windows Phone 7.5 or Mango Phone
-
How to work with ToggleSwitch in Windows Phone 7
In this post I will discuss Toggle Switch Button. This comes as part of Silverlight toolkit for Windows Phone 7 and you get it from here To work with Toggle Switch, you need to add namespace You can use ToggleSwitch as below, You can set Header and Content of the Toggleswitch. If…