I am creating an app for Windows 8 in C# and XAML. I have included a video in a media element with play and pause button but I want to include another button that, when clicked, makes the video play to a certain point and then pause. Is this possible?
I was reading this post which is doing the same thing but with the windows media player sdk. I'm not very knowledgable about C# so I'd appreciate any advice.
Thanks
EDIT
//Play method
if(ispaused == true && isplaying == false)
{
VideoPlayer.Play();
}
//Pause method
if(ispaused == false && isplaying == true)
{
VideoPlayer.Pause();
}