1 / 5

Windows Phone Communication with Other Apps - Task Examples

Learn how to communicate with other apps on Windows Phone using tasks. See examples of using WebBrowserTask, MediaPlayerLauncher, and EmailComposeTask with code snippets.

alaric
Télécharger la présentation

Windows Phone Communication with Other Apps - Task Examples

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Programering af mobile enhederWindows Phone Uge 13 Task (Kommunikation med andre APP’s)

  2. Brug af web browser taskeksempel using Microsoft.Phone.Tasks; . . . .. . . . . . . . . WebBrowserTask browser = new WebBrowserTask(); browser.Uri = new Uri("http://webdemo.bjoerks.net/SimpleEksempler/doc3.htm"); browser.Show();

  3. Brug af mediaplayer taskeksempel using Microsoft.Phone.Tasks; . . . .. . . . . . . . . Microsoft.Phone.Tasks.MediaPlayerLauncher task = new Microsoft.Phone.Tasks.MediaPlayerLauncher(); task.Media = new Uri("http://webtv.eal.dk/1482495/1769534/2144052da569594b5907c6b592ba915d/video_medium/podcast/udsendelse-3-at-lre-af-video.mp4"); task.Show();

  4. Brug af email taskeksempel using Microsoft.Phone.Tasks; . . . .. . . . . . . . . EmailComposeTask emailTask = new EmailComposeTask(); emailTask.Subject = "Dette er en test"; emailTask.Body = "Jeg tester lige"; emailTask.To = "bjbu@tietgen.dk"; emailTask.Show();

  5. Links • Microsoft.Phone.Tasks Namespacehttp://msdn.microsoft.com/en-us/library/windowsphone/develop/microsoft.phone.tasks

More Related