示例#1
0
        private void tabAlbum_ComboBoxAlbums_AlbumSelected(object sender, EventArgs e)
        {
            foreach (PictureBox pictureBox in userAlbumPicturesComponent_TabAlbums.PictureBoxes)
            {
                pictureBox.Cursor = Cursors.Hand;
            }

            button_TabAlbums_Next.Enabled     = true;
            button_TabAlbums_Prevoius.Enabled = true;
            string albumName = comboBox_TabAlbums_AlbumsList.SelectedItem.ToString();

            m_AlbumsManager.SetCurrentAlbum(albumName);
            m_AppController.UpdatePhotosOnAlbumsTab(updateNextUserPhotosOnTabAlbum, userAlbumPicturesComponent_TabAlbums.NumOfPictureBoxes);
        }