//event handler for changig the source of the media element to the previous in the list
 void PlayPrevious(Object sender, EventArgs e)
 {
     MedCont.PlayPrevious();
 }
 private void PlayPrevious(Object sender, EventArgs e)
 {
     MedCont.PlayPrevious();
     --FileListView.SelectedIndex;
 }