private void GridContainer_MouseDown(object sender, MouseButtonEventArgs e)
 {
     if (e.ClickCount >= 2)
     {
         ShowPlay showPlay = new ShowPlay();
         showPlay.Show();
     }
 }
 private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
 {
     if (e.ClickCount >= 2)
     {
         ShowPlay showPlay = new ShowPlay();
         showPlay.Show();
         DisplayRetrievedPlaysOnScroll();
     }
 }