Example #1
0
        private void OpenSlideShow()
        {
            Carousel DLG = new Carousel();

            if (Slideshow.Count != 0)
            {
                DLG.PhotoList = Slideshow;
            }
            else
            {
                DLG.PhotoList = DBPhotosWebServices.GetFilteredPhotos(PhotoFilter);
            }

            DLG.Show();
        }