public void startSlideshow(object sender, RoutedEventArgs evt) { Item screenData = (Item)ScreenSelector.SelectedItem; Slideshow slideshow = new Slideshow(); slideshow.WindowStartupLocation = WindowStartupLocation.Manual; slideshow.Left = screenData.X; slideshow.Top = screenData.Y; slideshow.Show(); }