Tag: windows phone 7.5
-
Clipboard API in Windows Phone
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…
-
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…
-
How to work with WrapPanel in Windows Phone 7
In this post I will show you the various way of working with WrapPanel in Windows Phone 7 application. I will discuss Basic working of WrapPanel WrapPanel with ScrollBar Using WrapPanel in a ListBox WrapPanel comes as part of Silverlight for Windows Phone Toolkit. You can download it from here . You need to install…
-
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…