private void btnShow_Click(object sender, EventArgs e)
        {
            var busPhotoAlbum = chbShowPicBox.SelectedItem as BusPhotoAlbum;
            if (busPhotoAlbum == null)
            {
                return;
            }

            var showDishListControl = new ShowDishListControl(busPhotoAlbum.StorePicturesList);
            var pop = new Popup(showDishListControl);
            pop.Show(btnShowDish, false);
        }
        private void btnShowDish_Click(object sender, EventArgs e)
        {
            var dishesTyep = chbShowDishType.SelectedItem as DishesTyep;
            if (dishesTyep == null)
            {
                return;
            }

            var showDishListControl = new ShowDishListControl(dishesTyep.DishesList);
            var pop = new Popup(showDishListControl);
            pop.Show(btnShowDish, false);
        }