VideoChooserTask :: MediaChooserTask in WP8

VideoChooserTask & MediaChooserTask not available in default chooser Windows Phone 8 So We can Use MedialLibrary it will give you access to existing Songs & Video

Namespace: Microsoft.Xna.Framework.Media
using(MediaLibrary library = new MediaLibrary())
{
SongCollection songscollection = library.Songs;
Song song = songscollection [0];
MediaPlayer.Play(song);
}

Dev FeedBack:

Please follow below link for update
http://wpdev.uservoice.com/forums/110705-dev-platform/suggestions/1897833-video-chooser-task

0 Comments

Featured Post

Improving C# Performance by Using AsSpan and Avoiding Substring

During development and everyday use, Substring is often the go-to choice for string manipulation. However, there are cases where Substring c...

MSDEVBUILD - English Channel

MSDEVBUILD - Tamil Channel

Popular Posts