Пример #1
0
        //Sparar ändringarna för en podcast
        private void Spara_Podcast_Click(object sender, EventArgs e)
        {
            try
            {
                int updateFrequency = int.Parse(comboBox_UF.SelectedItem.ToString());
                if (podcastValidation.isInputEmpty(textBox_Namn.Text) == false)
                {
                    if (podcastValidation.isNotValidURL(textBox_URL.Text) == false)
                    {
                        if (podcastValidation.isUppdateringsFrekvensEmpty(comboBox_UF) == false)
                        {
                            if (podcastValidation.isKategoriEmpty(comboBox_Kategori) == false)
                            {
                                Podcast changePodcast = new Podcast(textBox_URL.Text, comboBox_Kategori.SelectedItem.ToString(), updateFrequency, GetNumberOfEpisodes(textBox_URL.Text), textBox_Namn.Text);
                                int     index         = ListView_Podcast.SelectedIndices[0];
                                podcastController.ChangePodcast(index, changePodcast);

                                ClearNewPodcastFields();
                                ShowPodcasts();

                                MessageBox.Show("Ändringarna är sparade");

                                Spara_Podcast.Enabled = false;
                                button_Visa.Enabled   = false;
                                textBox_URL.Enabled   = true;
                            }
                        }
                    }
                }
            }
            catch (OurExceptions ex)
            {
                MessageBox.Show(ex.Message);
            }
        }